Re: Plotting two list variables
- To: mathgroup at smc.vnet.net
- Subject: [mg107442] Re: Plotting two list variables
- From: "Kevin J. McCann" <kjm at KevinMcCann.com>
- Date: Fri, 12 Feb 2010 04:45:47 -0500 (EST)
- References: <hl0ono$t34$1@smc.vnet.net>
If logP and logS are List's, then do ListPlot[Transpose[{logP,logS}] Kevin Bob Gotwals wrote: > I have two variables in separate lists, extracted from a larger data set. How do I plot one as "x", and the other as "y"? > > logP = drugs[[All, 2]]; > logS = drugs[[All, 3]]; >