Displaying 3 results from an estimated 3 matches for "var00003".
Did you mean:
var00001
2006 Jan 11
3
SPSS and R ? do they like each other?
... and is there also such a nice tool (like spss.get) for exporting
data frames to SPSS? write.table does not keep the data frame labels -
neither did the other exporting tools that I found.
Thanks!
Michael
[[alternative HTML version deleted]]
2000 Sep 19
3
coerce mode list?
Dear R/S users;
I'm using S+ version 4 Release 3.
and I am trying to do a simple calculation like the
following :
> X1<-X[1:5]
> W1<-W[1:5,1:5]
> X1
[1] 1.250000 1.292308 1.176471 0.937500 1.538462
> W1
VAR00003 VAR00004 VAR00005 VAR00006 VAR00007
1 0 1 0 1 0
2 1 0 0 0 1
3 0 0 0 0 1
4 1 0 0 0 0
5 0 1 1 0 0
> Xbar1 <- mean(X1)
&...
2004 Apr 27
0
lmRobMM vs rlm
...68958988 0.15612729
13 14 15 16 17 18
-3.10081497 -1.43820259 2.20031311 0.86156818 -0.29869392 0.49171093
19 20 21
1.02517352 1.61796106 -10.50956979
(Intercept) VAR00001 VAR00002 VAR00003
-41.5230433 0.9388404 0.5794524 -0.1129150
I am very worried by this discrepancy what have I done wrong?
I read in R:Robust Fitting of Linear Models: MM estimation is M-Estimation
with Tukey's biweight initialized by a specific S-estimator
and so I alter my S-Plus code to
ct<-lmRobM...