Re: Plotting the histogram
- To: mathgroup at smc.vnet.net
- Subject: [mg31326] Re: [mg31303] Plotting the histogram
- From: BobHanlon at aol.com
- Date: Sun, 28 Oct 2001 03:07:06 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2001/10/27 1:48:50 AM, msdawy at hotmail.com writes: >i am quite new to mathematica... >i am trying to plot a histogram of some data.. >i have a list x filled with values, when i type >normdata = RandomArray[NormalDistribution[], 100]; >Histogram[normdata] >it responds with nothing (these 2 lines are taken from the examples). >i can't see what's wrong.. >could you please help me? > RandomArray is not defined unless you first load a package which defines it. Needs["Statistics`NormalDistribution`"]; normdata=RandomArray[NormalDistribution[],100]; Histogram[normdata]; Bob Hanlon Chantilly, VA USA