Lane, Jim
Fri, 26 Jun 2009 06:58:48 -0700
Hi, All I have a data frame as follows:
> data.class(tapes)
[1] "data.frame"
> names(tapes)
[1] "date" "loc" "class" "drp" "data" "scratch"
"reclaim" "total"
Date is a date; loc, class and drp are factors; the rest are numerics.
I want to generate separate plots by date for the numeric variables for
all combinations of the factors. I tried to do this as follows:
> by(tapes,list(loc,class,drp),plot(date,scratch))
Error in FUN(X[[1L]], ...) : could not find function "FUN"
As well as the error I get a single plot for all values of scratch and
date which is meaningless. What am I going wrong here?
For clarification what I want would be done is SAS as something like:
proc gplot;
plot scratch*date;
by loc class drp;
quit; run;
Jim Lane
Capacity Planner
RBC Financial Group
315 Front St W
6th Floor - H14
Toronto, Ontario CANADA
M5V 3A4
416-348-6024
Display of superior knowledge is as great a vulgarity
as display of superior wealth - greater indeed, inasmuch
as knowledge should tend more definitely than wealth
towards discretion and good manners.
- H. W. Fowler, Modern English Usage
_______________________________________________________________________
This e-mail may be privileged and/or confidential, and the sender does not
waive any related rights and obligations.
Any distribution, use or copying of this e-mail or the information it contains
by other than an intended recipient is unauthorized.
If you received this e-mail in error, please advise me (by return e-mail or
otherwise) immediately.
Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce
pas aux droits et obligations qui s'y rapportent.
Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il
contient par une personne autre que le (les) destinataire(s) désigné(s) est
interdite.
Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser
immédiatement, par retour de courrier électronique ou par un autre moyen.
[[alternative HTML version deleted]]
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.