Displaying 3 results from an estimated 3 matches for "ob8".
Did you mean:
  b8
  
2009 Jul 07
1
ReShape to create Time from Observations?
...10, B=0, C=1, Ob1=1:10, Ob2=2:11, Ob3=3:12,
Ob4=4:13, Ob5=3:12, Ob6=2:11)
Y<-data.frame(A=1:20, B=0, C=1, D=5, Ob1=1:10, Ob2=2:11, Ob3=3:12,
Ob4=4:13, Ob5=3:12, Ob6=2:11, Ob7=5:9)
Z<-data.frame(A=1:30, B=0, C=1, D=6, E=1:2, Ob1=1:10, Ob2=2:11,
Ob3=3:12, Ob4=4:13, Ob5=3:12, Ob6=2:11, Ob7=1:10, Ob8=3:12)
Each row in the data.frame is a unique experiment. The fields Ob1:Ob6
(in the case of the first data.frame) represent observations taken at
fixed intervals for specific that experiment. (Observation 1,
Observation2, etc.) IMPORTANT - Different data files have different
numbers of both experi...
2010 Feb 13
8
S.T.A.L.K.E.R. - Call of Pripyat on Wine 1.1.38
After upgrade (wine 1.1.37>1.1.38, my distribution is ArchLinux) STALKER Call of Pripyat crashes after one minute playing.
[neko at gdetotut ~]$ wine --version
wine-1.1.38
 [Crying or Very sad]
2009 Jul 09
2
How to Populate List
...:12,
> + Ob4=4:13, Ob5=3:12, Ob6=2:11)
>> Y<-data.frame(A=1:20, B=0, C=1, D=5, Ob1=1:10, Ob2=2:11, Ob3=3:12,
> + Ob4=4:13, Ob5=3:12, Ob6=2:11, Ob7=5:9)
>> Z<-data.frame(A=1:30, B=0, C=1, D=6, E=1:2, Ob1=1:10, Ob2=2:11,
> + Ob3=3:12, Ob4=4:13, Ob5=3:12, Ob6=2:11, Ob7=1:10, Ob8=3:12)
>>
>> f.melt <-
> + function(df)
> + {
> + ? ? # get the starting column number of "Ob1", then extend for rest of columns
> + ? ? require(reshape)
> + ? ? melt(df, measure=seq(match("Ob1", names(df)), ncol(df)))
> + }
>> x.m <- f.m...