 
 
 
 
 
 
Re: Filled Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg25912] Re: [mg25884] Filled Plot
- From: Tomas Garza <tgarza01 at prodigy.net.mx>
- Date: Tue, 7 Nov 2000 23:04:59 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Yes, indeed, you may:
In[1]:=
<< Statistics`ContinuousDistributions`
In[2]:=
ndist = NormalDistribution[0, 1];
In[3]:=
<< Graphics`FilledPlot`
In[4]:=
a = Plot[PDF[ndist, x], {x, -3, 3}];
In[5]:=
b = FilledPlot[PDF[ndist, x], {x, 0, 3}];
In[6]:=
Show[a, b];
Tomas Garza
Mexico City
"Pedro Ferreira" <pjmferreira at hotmail.com> wrote:
> Can I plot de Normal density function Plot[dist,{x,-3,3}] and then fill
> only a region under that curve, for example {x,0,3}?

