search for: 1jan5

Displaying 2 results from an estimated 2 matches for "1jan5".

Did you mean: 1jan4
2005 Apr 21
3
Need help with R date handling and barchart with errorbars
...-20029 LV1 3.4 3 88 16 -19998 LV1 3.0 2 26 where as when I run this >dates <- c(lapply(testdata[c("date")], function(x) as.date(levels(x)[x]))); the ouput is $date [1] 1Jan4 1Feb4 1Mar4 1Apr4 1May4 1Jun4 1Jul4 1Aug4 1Sep4 1Oct4 1Nov4 1Dec4 [13] 1Jan5 1Feb5 1Mar5 1Apr5 Question: 1. Can someone please explain me why the difference. 2. I later want to plot the data using barchart eg (barchart(date ~ mean | dataset, data=testdata);) in which case will the dates appear in assending order of dates or something special needs to be done for that. 3....
2005 Apr 25
1
Need help with panel.segment..
...LV1 3.0 2 26 > > where as when I run this > > >dates <- c(lapply(testdata[c("date")], function(x) > > as.date(levels(x)[x]))); > > the ouput is > $date > [1] 1Jan4 1Feb4 1Mar4 1Apr4 1May4 1Jun4 1Jul4 1Aug4 1Sep4 1Oct4 > 1Nov4 1Dec4 [13] 1Jan5 1Feb5 1Mar5 1Apr5 > > Question: > 1. Can someone please explain me why the difference. No difference (except that the print method for data.frame's doesn't know about 'date's.). Note that you have managed to create dates approximately 2000 years in the past. > 2. I...