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
lala
Level IX

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

例如: 身高体重同时符合条件的个数

谢谢!

2022-02-07_143758.png

2 REPLIES 2
lala
Level IX

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

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

//s=5

??

lala
Level IX

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

I SEE

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

Recommended Articles