[R] lmer family=binomal p-values

2009-10-19 Thread Krystyna Golabek
23110.01298 1.780 0.07503 . ---- Krystyna Golabek Room C79 School of Biological Sciences University of Bristol Woodland Road Bristol BS8 1UG U.K. Email: bz...@bristol.ac.uk Office: 0117 9545945 Web: http://www.bio.bris.ac.uk/people/staff.cfm

[R] Viewing specific data from a dataframe

2009-10-06 Thread Krystyna Golabek
Dear R users, Simple question. Can anyone help with the code that would allow me to view only the variables who's correlation output is >0.8? This is the code I'm using to date >cor(data, method="spearman") Kind regards Krys

Re: [R] Random Sample with Unique function

2009-04-28 Thread Krystyna Golabek
rtant to use "with replacement" in your case, since you only sample > 1 obervation for each stratum. > > Uwe Ligges > > > > > Krystyna Golabek wrote: > > Dear R-users > > > > I have a dataset of 243 lines with replicate information for 20 diff

[R] Random Sample with Unique function

2009-04-28 Thread Krystyna Golabek
[1] "CALL""CONTEXT" "ORDER" "ID" "STATUS" s1<-cc[sample(1:243,20,replace=TRUE),] This code samples 20 rows from the dataset but can anyone help me write the code to request unique(ID) in this sample? Tha