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.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar
0 Kudos

hieght weight

 

Make a New Column next to your Column of Numbers and add this Formula  (:weight) is unique Column name.

Col Sum(:weight)

The other is to Launch Graph Builder with a Script

 

xx=colsum(:weight);
Graph Builder(
Size( 524, 492 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ), Group X( :age ) ),
Elements( Points( X, Y, Legend( 25 ) ), Smoother( X, Y, Legend( 26 ) ) ),
SendToReport(
Dispatch(
{},
 "Graph Builder",
OutlineBox,
{Set Title( "Sum of Weight: "||char(xx) ), Image Export Display( Normal )}
),
Dispatch( {}, "graph title", TextEditBox, {Set Text( "Sum of Weight: "||char(xx) )} )
)
)