public interface LinearHistogram extends Serializable
Modifier and Type | Method and Description |
---|---|
void |
binValues(int[] bins)
Write bin values to an array,
|
int |
getBinCount()
Bin count.
|
int[] |
getBinValues()
Get bin values.
|
double |
getBinWidth()
Bin width.
|
int |
getItemCount()
Represented item count.
|
double |
getLowLimit()
Lowest value assigned to the first bin.
|
int |
getOverflowItemCount()
Items larger than the last bin.
|
int |
getUnderflowItemCount()
Items smaller than the first bin.
|
double |
getUpperLimit()
Largest value assigned to the last bin.
|
double getLowLimit()
double getUpperLimit()
int getBinCount()
double getBinWidth()
int getItemCount()
int getUnderflowItemCount()
int getOverflowItemCount()
int[] getBinValues()
void binValues(int[] bins)
bins
- Array to write bin valuesIllegalArgumentException
- when bins array size differs from getBinCount()