cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

How to calculate and assign to variables directly in memory?

lala
Level VIII

For example: the number of height and weight that meet the conditions at the same time

Thanks!

undefined

This post originally written in Chinese (Simplified) and has been translated for your convenience. When you reply, it will also be translated back to Chinese (Simplified).

2 REPLIES 2
lala
Level VIII


回复: 怎样直接在内存中计算并赋值给变量?

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
s = Sum( dt[0, "height"] < 60  dt[0, "weight"] < 90 );

//s=5

??

lala
Level VIII

回复: 怎样直接在内存中计算并赋值给变量?

I SEE

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
s = Sum( dt[0, "height"] < 60  (dt[0, "weight"] < 90) );