Displaying 20 results from an estimated 89 matches for "45.0".
Did you mean:
  4.0
  
2009 Oct 24
1
Shutdown N-POWER MV-1000 LT UPS is not working
Hello! 
I use online UPS MV-1000 LT 
http://www.230v.ru/catalogue/?id=production/ups-sm/master-vision 
for the power of my Linux server SLES 10 SP1. 
I downloaded, compiled and configured diver nut 2.4.1 from this link 
http://www.networkupstools.org/source/2.4/nut-2.4.1.tar.gz 
Here are my configuration files:
---
srv:/usr/local/ups # cat etc/ups.conf
[npower]
driver = megatec
port = /dev/ttyS0
2006 Apr 02
0
CESA:2006-0201-1 CentOS 4 i386 Cluster Suite / Global File System update (csgfs repo only)
CentOS Errata and Security Advisory 2006-0201-1
CentOS 4 i386 Cluster Suite / Global File System Update
The CESA is an update to the csgfs repository only and not the main
CentOS-4 repository.
This CESA is issued to upgrade Cluster Suite 4 and Global File System
6.1 to use the 2.6.9-22.0.2.EL CentOS-4 kernel.  It updates to all
CS/GFS packages to the latest versions.
The following files are
2018 Jan 30
2
Calculating angle of a polyline
Assuming your polyline is defined by two vectors, one for the x
coordinates, one for the y coordinates, you can try the following
library(NISTunits)
polyangles <- function(xV,yV) {
  stopifnot( (length(xV)==length(yV)) && (length(xV) >= 3))
  v <- function(i) { c( xV[i]-xV[i-1], yV[i]-yV[i-1])}
  vlen <- function(v) { sqrt(sum(v*v)) }
  lV <- rep(NA_real_,length(xV))
  for
2016 Mar 23
2
Centos in the Browser string ?
I know Centos is a 100% rebuilt of whatever Red Hat has produced, even
though the version numbers are no longer visually identical and, as
Johnny always writes, "If it ain't in the Red Hat version, it ain't in
Centos" or words having the same meaning.
Having got circa 20,000 hits, from all round the world, to a single dull
web page in 2 days, I thought I would analyse the
2013 Jul 17
2
error message in gev
 
Hi r-users,
 
I would like to use gev and my data (annual rainfall ) is as follows:
 
> head(dat,20)  A    B    C    D    E    F    G    H    I     J
1  45.1 41.5 58.5 50.1 46.0 49.1 37.7 49.1 59.8  54.0
2  50.3 39.8 49.4 56.4 49.4 48.8 42.1 49.8 49.4  58.3
3  41.7 39.3 44.6 39.1 35.7 41.5 40.8 40.8 38.5  45.6
4  50.7 33.9 48.4 28.2 35.5 39.1 61.4 17.0 30.7  38.3
5  39.3 30.6 46.9 23.8 25.8
2006 Feb 02
0
CentOS-announce Digest, Vol 12, Issue 1
Send CentOS-announce mailing list submissions to
	centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
	centos-announce-request at centos.org
You can reach the person managing the list at
	centos-announce-owner at centos.org
When
2010 Sep 14
3
how to compute when row length is different
hi guys..please help me with this
i am working on two data frames
one goes like this:
DF1
Sample_id RepairHours Denatured Dose ZeroMean FourtyFiveMean NinetyMean
1     SDM071           0         1    B     60.5           19.0       45.0
2     SDM071           1         1    B     46.0           23.0       42.5
3     SDM071           2         1    B     52.5           24.0       40.0
4     SDM071 
2006 Apr 02
0
CESA:2006-0201-1 CentOS 4 x86_64 Cluster Suite / Global File System update (csgfs repo only)
CentOS Errata and Security Advisory 2006-0201-1
CentOS 4 x86_64 Cluster Suite / Global File System Update
The CESA is an update to the csgfs repository only and not the main
CentOS-4 repository.
This CESA is issued to upgrade Cluster Suite 4 and Global File System
6.1 to use the 2.6.9-22.0.2.EL CentOS-4 kernel.  It updates to all
CS/GFS packages to the latest versions.
The following files are
2006 Mar 02
1
Curious subsetting behavior
I have a simple vector, called tmp that I want to subset based on another
vector called vec.  Everything works as expected except for below where the
subsetting returns something other than the original data.  Any ideas?
> vec <- c(1,2,3,4,5,59,60,27,32,21)
> tmp
 [1]  1.0  1.1  2.0  2.1  2.2  3.0  3.1  4.0  5.0  5.1  6.0  7.0  8.0  8.1
9.0
[16]  9.1  9.2 10.0 10.1 11.0 12.0 13.0 14.0
2018 Jan 30
0
Calculating angle of a polyline
I like to use complex numbers for 2-dimensional geometry.  E.g.,
> polyAngles2
function (xV, yV)
{
    stopifnot((length(xV) == length(yV)) && (length(xV) >= 3))
    z <- complex(re = xV, im = yV)
    c(NA, diff(Arg(diff(z))), NA) # radians, positive is counter-clockwise
}
> x <- c(0:3)
> y <- c(0,0,1,1)
> polyAngles2(x,y) / pi * 180
[1]  NA  45 -45  NA
Bill
2010 Feb 11
1
Loss of precision when importing data into R
Hi Listers,
I can't seem to figure out why I loose precision when I try to import a
comma delimited file using read.csv or read.table.
The fields of interest are rounded to one decimal  place.
           DataTimeStamp TerminalID Hours Minutes Latitude Longitude
Status Temperature Battery BootTimes Current Google
1  2/11/2010 12:22:21 PM    4894551    12       0     45.0     -66.5
0          30
2009 Nov 10
3
creating multiple plots using a splitting factor
Hello,
 
I am new to R.  I often collect data at multiple sites and need to
create separate graphs (such as scatterplots or histograms) of specific
variables for each site.  I have tried to do this by splitting the data
frame and then using lapply, but it seems that the graphing commands
cannot be called as functions.  Here is a sample of my data, called
"seeddist2":
 
   site   
2006 Oct 15
1
gamma distribution don't allow negative value in GLMs?
Dear friends,
 when i use glm() to fit my data,  i use
glm(formula = snail ~ vegtype + mhveg + humidity + elevation + soiltem, *family
= Gamma(link = inverse),* data =a,))
It shows:  error in eval(expr, envir, enclos) : *gamma distribution don't
allow negative value*.
But i use
result<-glm(formula = snail ~ vegtype + mhveg + humidity + elevation +
soiltem, family = poisson, data =a) #this
2010 Dec 30
3
Boot Error GPT partition
Hi all,
         I was using grub2 for booting Archlinux x86_64 in my GPT
Internal HDD (/dev/sda) then I switched to syslinux/extlinux. It was
working fine but suddenly it staring showing "Boot Error" message on
screen. I googled for a solution and tried all syslinux versions from
4.04-pre4 down to 4.03-stable but non of them worked. I don't know
what suddenly changed  caused this
2010 Mar 12
2
Handling repeated values differently
mat is a matrix with X and Y values. 
> mat
       X  Y
 [1,] 56 20
 [2,] 56 21
 [3,]  2 50
 [4,]  3 46
 [5,] 18 77
 [6,] 57 12
 [7,] 57 36
 [8,] 95 45
 [9,] 65 23
[10,] 33 25
[11,] 33 98
[12,] 63 96
[13,] 66 75
[14,] 99 54
[15,] 78 65
[16,] 75 69
[17,] 54 68
[18,] 54 67
[19,]  0 22
[20,] 14 74
[21,] 15 52
[22,] 46 10
[23,]  6 20
[24,]  6 30
As you can see, some of the X values repeat. I wish
2010 Jun 08
2
problem with if else statement
Dear colleagues,
What did I not understand ?
->my intention
I want to create a new variable:
In plain language:
If someone is taking anithypertensive treatment (med.hyper==1)
table(med.hyper)
med.hyper
  0   1
472  97
I want to subtract 5 mmHg (rr.dia.2m-5) from the measured diastolic 
blood pressure (rr.dia.2m)
if not treated - the value of the measured diastolic blood pressure 
should
2016 Mar 24
0
Centos in the Browser string ?
On 03/23/16 18:42, Always Learning wrote:
<>
> My C5 Firefox string is "Mozilla/5.0 (X11; Linux x86_64; rv:38.0)
> Gecko/20100101 Firefox/38.0".
>
> Ubunto has "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0)
> Gecko/20100101 Firefox/45.0"
>
> My questions are:-
>
> (1) Why can't we have 'Centos' in the Firefox browser string ?
2007 Sep 25
1
Thermal/Heat
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list
Can you please say me what this output exactly mean? Anything in
relation to fans/cooling? What does "active" and "ok" mean? Which values
are healthy?
# acpi -tBSc
     Thermal 1: active[3], 50.0 degrees C
     Thermal 2: ok, 47.0 degrees C
     Thermal 3: ok, 45.0 degrees C
     Thermal 4: ok, 28.0 degrees C
     Thermal
2018 Jan 30
2
Calculating angle of a polyline
Dear R users
I am trying to find a formula to calculate the angle of a polyline. Is
there a way to do this?
Many thanks.
-- 
Best Regards
Javad Bayat
M.Sc. Environment Engineering
Alternative Mail: bayat194 at yahoo.com
	[[alternative HTML version deleted]]
2018 Jan 30
0
Calculating angle of a polyline
A polyline by definition has many angles, so your question is ill-formed. And this is a question about math, not R, so is off topic here. I suggest reading Wikipedia.
-- 
Sent from my phone. Please excuse my brevity.
On January 29, 2018 11:10:02 PM PST, javad bayat <j.bayat194 at gmail.com> wrote:
>Dear R users
>I am trying to find a formula to calculate the angle of a polyline. Is