Displaying 4 results from an estimated 4 matches for "loglife".
2005 Mar 21
2
NaN
...40893177 -0.6144743
PredIndex 0.09588524 -0.01538017 -0.3526558 -0.39795310 -0.4047155
ExposeIndex 0.40563880 0.32318968 -0.5802789 -0.50363338 -0.6213578
DangerIndex 0.25932512 0.15093686 -0.5346247 -0.57194862 -0.6043029
logbrw 0.47461094 0.53992522 -0.6302266 -0.36884187 -0.6223073
loglife 0.37351520 0.45819097 -0.3549184 -0.38521174 -0.4028017
loggest 0.41308558 0.45045240 -0.5754478 -0.57234786 -0.6376850
logbw 0.50905390 0.52255094 -0.6603217 -0.26930774 -0.6174775
logpara NaN NaN NaN NaN NaN
Lifespan G...
2005 Mar 16
2
(no subject)
Dear R
I'm trying to do a correlation matrix for some variables I have.
Unfortunately there are some NA entries for some of the variables
I tried the following
cor(sleep[c("logbw", "logbrw", "SlowSleep", "ParaSleep", "loglife",
"loggest")])
but it told me
Error in cor(sleep[c("logbw", "logbrw", "SlowSleep", "ParaSleep", "loglife",
:
missing observations in cov/cor
How can I get R to conduct a correlation matrix for this data set??
brett
2005 Mar 21
2
Highlighting points in a scatter plot matrix
Dear R
I recently did a scatterplot matrix using the following command
pairs(sleep[c("SlowSleep", "ParaSleep", "logbw", "logbrw", "loglife",
"loggest")],col=1+as.integer(ParaSleep > 5.5 | SlowSleep > 15.7))
this highlighted outlying points for some of the x,y plots that I needed to
identify. Unfortunately this highlights all the x,y plots some for which
these points are not necessarily outliers. Is there a way to...
2005 Mar 17
0
(no subject)
...> Dear R
> I'm trying to do a correlation matrix for some variables I have.
> Unfortunately there are some NA entries for some of the variables
> I tried the following
>
> cor(sleep[c("logbw", "logbrw", "SlowSleep", "ParaSleep", "loglife",
> "loggest")])
>
> but it told me
> Error in cor(sleep[c("logbw", "logbrw", "SlowSleep",
> "ParaSleep", "loglife",
> :
> missing observations in cov/cor
>
> How can I get R to conduct a correla...