Displaying 2 results from an estimated 2 matches for "kkwa".
2004 Jun 17
2
Date Calculation
Hi,
I've been playing with:
> joinDate <- format(strptime(as.vector(forum[,2]), "%d-%b-%y"),
+ "%d-%b-%Y")
> today <- format(strptime(as.vector("14-Jun-04"), "%d-%b-%Y"),
+ "%d-%b-%Y")
> joinDate
[1] "04-Feb-2004" "13-Feb-2004" "26-Feb-2004"
2002 Oct 01
1
Cleveland's Cut-and-Stack Plot
Hi,
Is there a function in R that does Cleveland's Cut-and-Stack plot (Page
190 -- 191, The Elements of Graphing Data, William S. Cleveland)?
Or do I need to do it the hard way, i.e. set par(mfrow = c(m, n)) then do
it one-by-one?
(I have a time series data set that is almost identical to the description
in Cleveland's book, hence I'm interested in trying the Cut-and-Stack
plot)