cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
BabyDoragon
Level IV

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