search for: groupdata

Displaying 5 results from an estimated 5 matches for "groupdata".

Did you mean: groupdate
2007 Dec 27
2
groupedData function not found
...ect: pigs<-data.frame(cbind(pig.time,pig.id,pig.wt)) pig.growth<-groupedData(pig.wt~pig.time|pig.id,data=pigs) I have added the package "nlme" and to confirm that it was installed correctly I requested the list of functions included in the package (library(help=nlme)) and I do see groupData in the list. I am using R 2.6.1 in Windows XP. I'll appreciate your help. Thanks, Andrea Previtali Post-doc fellow Dept. of Biology, Univ. of Utah, SLC, UT.
2007 Sep 10
0
member server config problem
...invalid users = root, admin, bin, daemon, sys, sync, lp, mail, news, uucp, proxy, www-data, backup, irc, sshd, man, identd, bacula, nobody, Debian-exim create mask = 0700 directory mask = 0700 browseable = No Then all the shares.... ACLS are enabled in fstab I have /groupdata with all groupshares and /userdata for homes. /groupdata is actually owned by me.domain_admins I can set acls from linux with setfacl -R -d -m g:group:rwx folder unfortunately I cannot change permissions from windows, not as domain-root nor as me even if I am in the domain_admins group and privi...
2018 Mar 22
0
How do I include a factor in a groupedData object? Meaning and use of inner and outer parameters
Dear John You are only allowed to have the primary covariate on the left hand side of the vertical bar. Other covariates go in inner or outer. Michael On 22/03/2018 12:59, Sorkin, John wrote: > Windows 10 64-bit, R-Studio, R version 3.4.3 > > > Several questions relating to groupedData: > > (1) I am trying to create a groupedData object that can be used to run an analysis
2018 Mar 22
3
How do I include a factor in a groupedData object? Meaning and use of inner and outer parameters
Windows 10 64-bit, R-Studio, R version 3.4.3 Several questions relating to groupedData: (1) I am trying to create a groupedData object that can be used to run an analysis that I have been able to urn using lmer. When I include the interaction terms in the groupedData opbject I get an error message stating that + is not meaningful for factors. How do I include factors in my model? See code and
2012 Mar 25
2
avoiding for loops
...his: > df1[groupIDX[[1]],]$id [1] D E F What sort of statement should I use if I want a result like: [[1]] [1] D E F Levels: A B C D E F [[2]] [1] A B C Levels: A B C D E F So far, I've used a for loop. Can I express this with apply statements? groupIDs <- list(1:length(groupIDX)) groupData<- for (i in 1:length(groupIDX)) { groupIDs[[i]] <- df1[groupIDX[[i]],]$id }