MathGroup Archive 2008

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

Search the Archive

Re: Plotting against Normal

  • To: mathgroup at smc.vnet.net
  • Subject: [mg91591] Re: Plotting against Normal
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Thu, 28 Aug 2008 03:19:00 -0400 (EDT)
  • References: <g93b3e$knc$1@smc.vnet.net>

Hi,

Needs["Histograms`"]

data = Table[Random[NormalDistribution[10, 2]], {10000}];

histo = Histogram[data];
plt = Plot[2000 PDF[NormalDistribution[10, 2]][x], {x, 4, 16}];

Show[histo, plt]


??

Regards
   Jens

ouadad wrote:
> Can anyone point me to the algorithm that allows you to plot a histogram of data with a Normal Dist curve superimposed?
> 


  • Prev by Date: How to get result in shape of fraction in Mathematica 4.2
  • Next by Date: Re: Eliminating intermediate results
  • Previous by thread: RE: Plotting against Normal
  • Next by thread: Superimposing Normal on a Histogram of data