cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
mbwun
Level I

Adding reference lines for sigma to a distribution histogram

I would like to customize my distribution histogram by adding reference lines for +/- 3 sd but I can't figure out how to get the 'Std Dev' without entering it manually.

What I am looking for is a customization that can be pasted into many separate distribution plots.

Any suggustions would be most helpful. - Tim

1616_example.jpg

1 REPLY 1
ptkguy
Level II

Re: Adding reference lines for sigma to a distribution histogram

One way to get column stats is with summarize():

dt = Open("$ENGLISH_SAMPLE_DATA/Big Class.jmp");

//Get column stats

summarize(

  sigma=StdDev(:height),

  avg = mean(:height)

);

siglow = avg - 3 * sigma;

sighigh = avg + 3 * sigma;

//make distribution

Distribution(

  Continuous Distribution( Column( :height ), Count Axis( 1 ) ),

  SendToReport(

  Dispatch(

  {"height"},

  "1",

  ScaleBox,

  {

  Min( 45 ), Max( 78), Inc( 5 ),Minor Ticks( 1 ),

  Add Ref Line( eval(siglow), Dotted, "Black","-3sd" ),

  Add Ref Line( eval(sighigh), Dotted, "Black","+3sd" )

  }

  )

  )

);

Recommended Articles