MathGroup Archive 1996

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: List of x,y pairs to use with ListPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg4635] Re: List of x,y pairs to use with ListPlot
  • From: Harald Berndt <haraldb at nature.berkeley.edu>
  • Date: Thu, 22 Aug 1996 03:54:53 -0400
  • Organization: University of California Forest Products Lab
  • Sender: owner-wri-mathgroup at wolfram.com

John Dobitz wrote:
> 
> I want to take two lists, one an intended 'x' and the other an intended 'y'
> and combine them into one list so I can use them for and x, y plot with the
> ListPlot function.
> 
> What I am trying to do is create a Dystra-Parsons plot, an oil industry
> standard.  This plot is log(permeability) versus occurance on probability
> paper.  I have the sorted permeability data in a list, then take the log,
> then I need to plot this list versus percent of order number.
 Let l2 = {sorted permeability data in a list},
					l1 = {percent of order number list (same order)}

Then make your
				plotList = Transpose[{l1, l2}]
and you're done.


-- 
_______________________________________________________________
Harald Berndt                          University of California
Research Specialist                  Forest Products Laboratory
Phone: 510-215-4224                            FAX:510-215-4299
_______________________________________________________________



==== [MESSAGE SEPARATOR] ====


  • Prev by Date: do we need to be moderated? Re: Piecewise Functions
  • Next by Date: Re: --->What is the problem with 'ParametricPlot'?
  • Previous by thread: Re: List of x,y pairs to use with ListPlot
  • Next by thread: Re: List of x,y pairs to use with ListPlot