- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to calculate and assign to variables directly in memory?
For example: the number of height and weight that meet the conditions at the same time
Thanks!
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 怎样直接在内存中计算并赋值给变量?
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
s = Sum( dt[0, "height"] < 60 dt[0, "weight"] < 90 );
//s=5
??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 怎样直接在内存中计算并赋值给变量?
I SEE
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
s = Sum( dt[0, "height"] < 60 (dt[0, "weight"] < 90) );