One option is to use Recode:
jthi_0-1675435695647.png
Select your values you wish to recode
jthi_1-1675435707072.png
Press Group
jthi_2-1675435722641.png
Select how you wish to recode them
jthi_3-1675435756678.png
And finally press Recode
Changed this:
jthi_4-1675435785188.png
to this
jthi_5-1675435796366.png
And if you have JMP16+ you can get the code from action recorder
// Recode column: Column 6
Local({dt},
dt = Data Table("Big Class");
dt << Begin Data Update;
dt << Recode Column(
dt:Column 6,
{Map Value(
_rcOrig,
{"X-Direction", "X", "X-direction", "X", "x", "X"},
Unmatched(_rcNow)
)},
Update Properties(1),
Target Column(:Column 6)
);
dt << End Data Update;
);
Or from Recode menu before you press Recode
jthi_6-1675435840610.png
-Jarmo