search for: recher

Displaying 4 results from an estimated 4 matches for "recher".

Did you mean: techer
2012 Apr 03
2
How does predict.loess work?
Dear R community, I am trying to understand how the predict function, specifically, the predict.loess function works. I understand that the loess function calculates regression parameters at each data point in 'data'. lo <- loess ( y~x, data) p <- predict (lo, newdata) I understand that the predict function predicts values for 'newdata' according to the loess regression
2009 Jun 09
3
"R CMD check" does not find a mistake
...ta' Code: id other time traj varName Docs: id time traj varName --- 8< ---------------- But here is what I get : --- 8< ---------------- R CMD check longitudinalData * checking for working pdflatex ... OK * using log directory 'C:/Documents and Settings/Christophe/Mes documents/Recher che/Trajectoires/kmeal/longitudinalData.Rcheck' * using R version 2.9.0 beta (2009-04-04 r48290) * using session charset: ISO8859-1 * checking for file 'longitudinalData/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'longitudinalData' version '0...
2009 Jun 09
0
"R CMD check" does not find a mistake
...hes from documentation object 'LongData-class': Slots for class 'LongData' Code: id other time traj varName Docs: id time traj varName --- 8< ---------------- But here is what I get on my computer: --- 8< ---------------- C:\Documents and Settings\Christophe\Mes documents\Recherche\Trajectoires\kmeal> R CMD check longitudinalData * checking for working pdflatex ... OK * using log directory 'C:/Documents and Settings/Christophe/Mes documents/Recher che/Trajectoires/kmeal/longitudinalData.Rcheck' * using R version 2.9.0 Patched (2009-06-07 r48733) * using session...
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",