<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: [R] multiple series on same graph</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>Hi Collin,</FONT>
</P>

<P><FONT SIZE=2>you can also try overlaying plots using par(new=...)</FONT>
</P>

<P><FONT SIZE=2>plot(x,y1)</FONT>
<BR><FONT SIZE=2>par(new=TRUE)</FONT>
<BR><FONT SIZE=2>plot(x,y2)</FONT>
</P>

<P><FONT SIZE=2>this plots in the same device, but take care with the annotations by using</FONT>
</P>

<P><FONT SIZE=2>par(ann=F)</FONT>
</P>

<P><FONT SIZE=2>to suppress them</FONT>
</P>

<P><FONT SIZE=2>good luck</FONT>
</P>

<P><FONT SIZE=2>Benjamin Warr</FONT>
</P>

<P><FONT SIZE=2>Research Associate</FONT>
<BR><FONT SIZE=2>Centre for the Management of Environmental Resource(CMER)</FONT>
<BR><FONT SIZE=2>INSEAD</FONT>
</P>
<BR>

<P><FONT SIZE=2>&gt; -----Original Message-----</FONT>
<BR><FONT SIZE=2>&gt; From: Collin Carbno [<A HREF="mailto:collin.carbno@sk.sympatico.ca">mailto:collin.carbno@sk.sympatico.ca</A>]</FONT>
<BR><FONT SIZE=2>&gt; Sent: 30 January 2002 02:20</FONT>
<BR><FONT SIZE=2>&gt; To: r-help@hypatia.math.ethz.ch</FONT>
<BR><FONT SIZE=2>&gt; Subject: [R] multiple series on same graph</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; I'm trying to duplicate some graphs from powerpoint in R package.&nbsp; One</FONT>
<BR><FONT SIZE=2>&gt; of things I'm having trouble with is I don't understand how to use the</FONT>
<BR><FONT SIZE=2>&gt; points command to create different sets of points with different color</FONT>
<BR><FONT SIZE=2>&gt; and marking attributes, and a legend on the graph.&nbsp; Where </FONT>
<BR><FONT SIZE=2>&gt; should I look?</FONT>
<BR><FONT SIZE=2>&gt; I can't seem to find an example of two different sets of data on the</FONT>
<BR><FONT SIZE=2>&gt; same graph.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.</FONT>
<BR><FONT SIZE=2>&gt; -.-.-.-.-.-.-.-.-</FONT>
<BR><FONT SIZE=2>&gt; r-help mailing list -- Read </FONT>
<BR><FONT SIZE=2>&gt; <A HREF="http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html" TARGET="_blank">http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html</A></FONT>
<BR><FONT SIZE=2>&gt; Send &quot;info&quot;, &quot;help&quot;, or &quot;[un]subscribe&quot;</FONT>
<BR><FONT SIZE=2>&gt; (in the &quot;body&quot;, not the subject !)&nbsp; To: </FONT>
<BR><FONT SIZE=2>&gt; r-help-request@stat.math.ethz.ch</FONT>
<BR><FONT SIZE=2>&gt; _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._.</FONT>
<BR><FONT SIZE=2>&gt; _._._._._._._._._</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>