Displaying 2 results from an estimated 2 matches for "1jan4".
Did you mean:
1jan5
2005 Apr 21
3
Need help with R date handling and barchart with errorbars
...088 LV1 3.8 2 87
14 -20057 LV1 3.2 3 28
15 -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...
2005 Apr 25
1
Need help with panel.segment..
...3 28
> 15 -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.
No difference (except that the print method for data.frame's doesn't
know about 'date's.). Note that y...