I'd like to draw a t-distribution with mean 2, std deviation .2 and 14 degrees of freedom.

Previously, I wrote the code for a normal distribution that looks like this:

Code:
   #delimit;
   twoway
   function y=normalden(x,claimed_mu,std_error), range(`=tick1' `=tick9')   ///
              graphregion(color(white)) clstyle(foreground) || 
   (scatteri 0 `=claimed_mu', mcolor(red)) (scatteri 0 `=sample_mean', mcolor(black)),
   plotregion(style(none))
   legend(off)
   xtitle("Sample means of weights of Kitti's hog-nosed bats (g), n=`=n'")
   xlabel(`=tick1' `=tick2' `=tick3' `=tick4' `=tick5' `=tick6' `=tick7' `=tick8' `=tick9', format(%6.4f))
   ylabel(none)
   yscale(off);
   #delimit cr
I looked at the help for tden, and ntden but wasn't able to write the code. Any assistance would be appreciated.