Histogram.ReBin

Prototypes

void ReBin( double dAnchor, double dBinWidth )

Parameters

double dAnchor
The anchor (or origin) is the reference tick to which the bin width is applied.

double dBinWidth
The width of the Histogram bins.

Remarks

This method specifies the origin and bin width for a Histogram.

Example
height = T({ 58 59 60 52 54 56 59 64 57 58 63 62 59 61 59 58 54 58 53 56 });
declare DataObject dobj;
dobj = DataObject.Create( "Student Height", "Height", height );
declare Histogram plot = Histogram.Create( dobj, "Height" );
plot.ReBin( 52, 2 );
See Also

Plot.SetAxisTickAnchor
Plot.SetAxisTickUnit