i, 5 Oct 2012 18:01:39 +0200
> To: r-help@r-project.org
> Subject: [R] Multiple graphs > boxplot
>
>
>
> Dear all
>
> I am trying to represent a dependent variable (treatment) against
> different independent variables (v1, v2, v3v20). I am using the
> follow
Hello,
I've once written a function that does more or less what you want, but
it has no formula interface.
# Input:
#x - matrix or data.frame of numeric vectors to graph
#by - a factor or coercible to factor
multi.boxplot <- function(x, by, col=0, ...){
x <- as.data.frame(x)
un
Dear all
I am trying to represent a dependent variable (treatment) against different
independent variables (v1, v2, v3v20). I am using the following command:
boxplot(v1~treatment,data=y, main="xx",xlab="xx", ylab="xx")
However, it provides me only one graph for v1~treatment. F
3 matches
Mail list logo