Transpose column, make transposed rows headers in JMP12
Does anyone know how to transform a column (just one column) and make the rows become the table header using JSL? I am using JMP12.Basically, I want the first row to be the column headers and not the output below. My dataset is attached. Thanks,Simondt = Data Table( "sports" ) << Transpose(
columns( :Items ),
Output Table( "transposed" )
);