Re: Ploting 2 Lists
- To: mathgroup at smc.vnet.net
- Subject: [mg16393] Re: [mg16226] Ploting 2 Lists
- From: Mitch Stonehocker <derivado at campus.ccm.itesm.mx>
- Date: Thu, 11 Mar 1999 02:16:56 -0500
- References: <199903050540.AAA13554@smc.vnet.net.>
- Sender: owner-wri-mathgroup at wolfram.com
Jorge, Try this. xvalues = {3,6,8}; yvalues = {4,1,6}; xAndy=Transpose[{xvalues,yvalues}]; ListPlot[xAndy,PlotJoined\[Rule]True,AxesLabel\[Rule]{"x","y"}] Regards, Mitch Stonehocker Mexico City Jorge Zickermann wrote: > 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} > > Thank you for any help, > > Jorge