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.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

How do I classify group based on count

Hi JMP community folks,

 

I have a data table with four columns as Side, TIME, Count, and ID.

I am trying to add a new column that groups a batch of IDs based on the Count column.

The data has already been sorted by Time and Count. 

The desired output I am trying to achieve is in the "Cycle (desired output)" column.

The formula which I tried to use was lag. But I am not able to achieve the desired output.

 

If( :Count < Lag( :Count, -1 ),
    i,
    i + 1
);

 

Would anyone have any solutions to this?

 

Thank you in advance. 

3 REPLIES 3
gzmorgan0
Super User (Alumni)

Re: How do I classify group based on count

@tantaibi ,

 

Here is what I'd use:

 

If(
	Row() == 1, 1,
	:Count >= Lag( :Count, 1 ), Lag( :Name( "Cycle (My Formula)" ), 1 ),
	Lag( :Name( "Cycle (My Formula)" ), 1 ) + 1
)

image.pngimage.png

 

Note Lag(col, 1) is the previous row's value in "col".  I added the equal to case. to be in the previous (same) group.

tantaibi
Level I

Re: How do I classify group based on count

@gzmorgan0 

 

Thank you for the explanation! 

 

Now if there were 2 sides, Side A and SIde B. 

How would I "restart" the cycle count for Side B to "1"? 

Instead of letting it continue to "5" onwards?

 

tantaibi_0-1593872596552.pngtantaibi_0-1593872596552.png

 

I tried to used a condition formatting for Side A and Side B, but not sure how to define a different formula

 

Thank you in advance!

gzmorgan0
Super User (Alumni)

Re: How do I classify group based on count

image.pngimage.png

 

image.pngimage.png

 

This will work for multiple levels of Side.

 

If(
	Row() == 1, 1,
	:Side == Lag( :Side, 1 ) & :Count >= Lag( :Count, 1 ), Lag( :Name( "Cycle(My Formula)" ), 1 ),
	:Side == Lag( :Side, 1 ), Lag( :Name( "Cycle(My Formula)" ), 1 ) + 1,
	1
)

Recommended Articles