search for: sub9

Displaying 3 results from an estimated 3 matches for "sub9".

Did you mean: sub
2009 Apr 09
2
better way of recoding factors in data frame?
...sub1? ? ???M? ? ? ???<NA> 2? ? ? sub2? ? ???F? ? ? ???<NA> 3? ? ? sub3? ? ???M? ? ? ???Male 4? ? ? sub4? ? ???M? ? ? ???<NA> 5? ? ? sub5? ? ???F? ? ? ???<NA> 6? ? ? sub6? ? ???F? ? ???Female 7? ? ? sub7? ? ? ? ? ? ? ???<NA> 8? ? ? sub8? ? ? ? ? ? ? ???<NA> 9? ? ? sub9? ? ? ???Not Recorded 10? ? sub10? ? ? ???Not Recorded I then apply the following: > myFrame2$SubjSex <- factor(myFrame2$SubjSex, levels = c('M','F')) > myFrame2$SubjSex <- factor(myFrame2$SubjSex, labels = c('Male','Female')) > myFrame2 <- transfo...
2009 Nov 27
2
using reshape to do ANOVA mixed models
Hi, I just started with R and I found that there are many options to rearrange the data to do mixed models. I want to use the reshape function. I have 2 between subject variables and one within. I was able to change the data structure but still - the result of the aov functions are calculating everything as a within subject. the table looks like this: SerialNo breed treatment distance_1
2006 Nov 01
1
How to rsync only specified subdirectories in the source folder?
...subdirectories and files too),and file1~file10,how can I rsync only sub2 and sub 3 to the target? /---- MyFolder |---------- sub1 |---------- sub2 |---------- sub3 |---------- sub4 |---------- sub5 |---------- sub6 |---------- sub7 |---------- sub8 |---------- sub9 |---------- sub10 |---------- file1 |---------- file2 |---------- file3 |---------- file4 |---------- file5 |---------------------- rsync -av --delete --include "/sub2/" --include "/sub3/" /MyFolder/ /dest/ this seems to sync other directories and f...