Re: Ploting 2 Lists
- To: mathgroup at smc.vnet.net
- Subject: [mg16330] Re: [mg16226] Ploting 2 Lists
- From: BobHanlon at aol.com
- Date: Sun, 7 Mar 1999 01:05:50 -0500
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 3/5/99 10:32:59 AM, jzickermann at mail.EUnet.pt writes:
>How can I plot the following lists;
>
>xvalues = {3,6,8}
>yvalues = {4,1,6}
>
>i.e. the points;
>
>{3,4},{6,1},{8,6}
>
Jorge,
xvalues = {3,6,8};
yvalues = {4,1,6};
ListPlot[Transpose[{xvalues, yvalues}],
PlotJoined -> True];
Bob Hanlon