search for: 306887

Displaying 1 result from an estimated 1 matches for "306887".

Did you mean: 3068,7
2007 Aug 23
1
How to merge string to DF
#Hi R-users, #I have an example DF like this: y1 <- rnorm(10) + 6.8 y2 <- rnorm(10) + (1:10*1.7 + 1) y3 <- rnorm(10) + (1:10*6.7 + 3.7) y <- c(y1,y2,y3) x <- rep(1:3,10) f <- gl(2,15, labels=paste("lev", 1:2, sep="")) g <- seq(as.Date("2000/1/1"), by="day", length=30) DF <- data.frame(x=x,y=y, f=f, g=g) DF$wdays <- weekdays(DF$g)