Perhaps matplot()?

matplot(cbind(x1, x2, x3), type = 'l')

See ?matplot for more information.

HTH,
Jorge.-


On Mon, Mar 19, 2012 at 2:40 PM, Alaios <> wrote:

> Dear all,
>
> I have made a function that given a number of list elements plot them to
> the same window.
>
> The first element is plotted by using plot and all the rest are plotted
> under the
>
> same window by using lines.
>
> I have below a small and simple reproducible example.
>
>
> x1<-c(1:10)
> plot(x1)
>
> x2<-c(11:20)
> lines(x2)
>
> x3<-c(31:40)
> lines(x3)
>
>
>
>
> as you might notice
> the two consecutive lines fail to be plotted as the axis were formed by
> the first plot.
> Would it be possible after the last lines to change the axis to the
> minimum and the maximum of all data sets to be visible?
>
> Any idea how I can do that?
>
> I would like to thank you for your help
>
> B.R
> Alex
>
>        [[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.
>

        [[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.

Reply via email to