Re: [R] Smallest Space Analysis (SSA) in R

2018-09-24 Thread Gasper Cankar
Get Outlook for Android On Mon, Sep 24, 2018 at 3:18 PM +0200, "Andrew" mailto:phaedr...@gmail.com>> wrote: Ha! Even better - thank you. Plenty here for me to play around with. Many thanks Andrew On 23/09/18 15:22, Michael Friendly wrote: > On 9/22/2018 6:49 AM,

[R] lmer and weights

2009-01-30 Thread Gasper Cankar
on how to set weights properly? Thanks for reply, ___ Gasper Cankar. PhD researcher National Examinations Centre (Ric) gasper.can...@ric.si tel. +386 1 54 84 682 fax. +386 1 54 84 601 __ R-help@r-project.org mailing list https

Re: [R] averaging pairs of columns in a dataframe

2008-08-28 Thread Gasper Cankar
somehow robust method for dataframe df would be newdf - (df[,seq(1,66,2)]+df[,seq(2,66,2)])/2 Gasper -Original Message- From: JonD [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2008 3:47 PM To: r-help@r-project.org Subject: [R] averaging pairs of columns in a dataframe

Re: [R] Converting 1-D array to vector

2008-08-27 Thread Gasper Cankar
c(as.matrix(df[1,])) will also work in your case. Gasper Cankar -Original Message- From: N. Lapidus [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2008 9:06 AM To: r-help@r-project.org Subject: Re: [R] Converting 1-D array to vector You were very close to an answer

Re: [R] juxtaposed and stacked bars in one barplot?

2008-08-27 Thread Gasper Cankar
You can simply do a - c(2,4,3,4,5) b - c(4,3,4,5,2) barplot(cbind(a,b)) or you can put a and b in matrix as help suggests. Gasper Cankar -Original Message- From: Stefan Uhmann [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2008 11:39 AM To: r-help@r-project.org Subject: [R