Is there a way (I am hoping via scripting) that will allow me to color the bars in the chart of a tabulate window. Also, is there way to get rid of the red dots in the background. This chart is a much nicer way of displaying some data, but it is not very customizable.Tabulate Chart
If you are planning on scripting it, then you may want to explore Summary under the Tables menu and then use Graph Builder or Distribution. Script the two together and it will be faster as well. Maybe something like this:
Names Default to Here (1);
Open("$SAMPLE_DATA/Big Class.jmp");
Data Table( "Big Class" ) << Summary(
Group( :age, :sex ),
Mean( :height ),
Mean( :weight ),
Freq( "None" ),
Weight( "None" ),
statistics column name format( "stat of column" ),
Link to original data table( 0 ),
output table name( "Big Class Summary" )
);
dts= Data Table ("Big Class Summary");
dts << Graph Builder(
Size( 534, 448 ),
Show Control Panel( 0 ),
Variables( X( :sex ), Y( :Mean of height ), Y( :Mean of weight ) ),
Elements( Position( 1, 1 ), Histogram( X, Y, Legend( 5 ) ) ),
Elements( Position( 1, 2 ), Histogram( X, Y, Legend( 6 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model( 5, Properties( 0, {Line Color( 0 ), Fill Color( 3 )} ) ),
Legend Model( 6, Properties( 0, {Line Color( 0 ), Fill Color( 5 )} ) )}
)
)
);
Can you post some sample data?
These are what I am using now. I would like to be able to plot these with percent instead of by count. That way the data from 13 does not make the data from 06 seem to disappear.
Hi @mann,
I think what @pmroz is asking is what is the structure of the data table that you are using to create the table in tabulate? What are the columns and rows?
Chris