search for: mystring1

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

Did you mean: mystring
2011 May 03
0
turning data with start and end date into daily data
Hello! I have data that contain, among other things the date for the beginning and for the end of a (daily) time series (see example below - "mydata") mystring1<-c("String 1", "String 2") mystring2<-c("String a", "String b") starts<-c(as.Date("2011-02-01"),as.Date("2011-03-02")) ends<-c(as.Date("2011-03-15"),as.Date("2011-03-31")) values<-c(2000,10000) mydata<...