How to add Kurtosis and Skewness to Tabulate
Hello,
I would like to add "Kurtosis" and "Skewness" to my row table. How do I do that?
dt = Current Data Table();
tab = dt << Tabulate(
Show Control Panel( 0 ),
Add Table(
Column Table( Analysis Columns( :VAR1, :VAR2, :VAR3, ) ),
Row Table( Statistics( Mean, Std Dev, Min, Max, Range, CV, Median ) )
)
);
Wait( 0.1 );
dtTab = tab << makeIntoDataTable;
Write( "Make a ...