Why is it not possible to generate this graph in JMP?
x axis: (first) Family Car
top graph: % of factor by sex
bottom graph: % of factor by age
Semiconductor Industry:
car = Lot
age = classification 1
sex= classification 2
The closest I can get without changing the data table:
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
dt << New Column( "First Family Car",
Character,
Formula( Word( 1, :family cars, "," ) )
);
Graph...