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
BabyDoragon
Level II

Finding Indices Greater Than a Specified Value in a List

As shown in the JSL below, in the case of a Matrix, 'loc' can be used to display indices greater than 5, but it cannot be applied to a List. How should I find the indices greater than a certain value in the case of a List?

show(Loc( [5, 7, 3, ., 5] >= 5 ));
show(Loc( {5, 7, 3, ., 5} >= 5 )); //Error
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Finding Indices Greater Than a Specified Value in a List

Convert the list into a matrix

Show(Loc(Matrix({5, 7, 3, ., 5} >= 5)));

Or you can use Where

Where({5, 7, 3, ., 5} >= 5)
-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: Finding Indices Greater Than a Specified Value in a List

Convert the list into a matrix

Show(Loc(Matrix({5, 7, 3, ., 5} >= 5)));

Or you can use Where

Where({5, 7, 3, ., 5} >= 5)
-Jarmo

Recommended Articles