cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
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