public class Tally extends StatProbe implements java.lang.Cloneable
add provides a new observation.
When the broadcasting to observers is activated,
the method add will also pass this new information to its
registered observers.
This type of collector does not memorize the individual observations,
but only their number, sum, sum of squares, maximum, and minimum.
The subclass TallyStore offers a collector that memorizes
the observations.| Constructor and Description |
|---|
Tally()
Constructs a new unnamed Tally statistical probe.
|
Tally(java.lang.String name)
Constructs a new Tally statistical probe with
name name.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(double x)
Gives a new observation x to the statistical collector.
|
double |
average()
Returns the average for this collector.
|
Tally |
clone()
Clones this object.
|
void |
confidenceIntervalNormal(double level,
double[] centerAndRadius)
Computes a confidence interval on the mean.
|
void |
confidenceIntervalStudent(double level,
double[] centerAndRadius)
Computes a confidence interval on the mean.
|
void |
confidenceIntervalVarianceChi2(double level,
double[] interval)
Computes a confidence interval on the variance.
|
java.lang.String |
formatCINormal(double level)
Equivalent to formatCINormal (level, 3).
|
java.lang.String |
formatCINormal(double level,
int d)
.
|
java.lang.String |
formatCIStudent(double level)
Equivalent to formatCIStudent (level, 3).
|
java.lang.String |
formatCIStudent(double level,
int d)
.
|
java.lang.String |
formatCIVarianceChi2(double level,
int d)
.
|
java.lang.String |
formatConfidenceIntervalNormal(double level)
Deprecated.
|
java.lang.String |
formatConfidenceIntervalNormal(double level,
int d)
Deprecated.
|
java.lang.String |
formatConfidenceIntervalStudent(double level)
Deprecated.
|
java.lang.String |
formatConfidenceIntervalStudent(double level,
int d)
Deprecated.
|
double |
getConfidenceLevel()
Returns the level of confidence for the intervals on the mean displayed in
reports.
|
void |
init()
Initializes the statistical collector.
|
int |
numberObs()
Returns the number of observations given to this probe
since its last initialization.
|
java.lang.String |
report()
Returns a formatted string that contains a report on this probe.
|
java.lang.String |
report(double level,
int d)
Returns a formatted string that contains a report on this probe
with a confidence interval level level using d
fractional decimal digits.
|
java.lang.String |
reportAndCIStudent(double level)
Same as
reportAndCIStudent
(level, 3). |
java.lang.String |
reportAndCIStudent(double level,
int d)
Returns a formatted string that contains a report on this probe (as in
report), followed by a confidence interval (as in
formatCIStudent), using d fractional decimal digits. |
java.lang.String |
reportAndConfidenceIntervalStudent(double level)
Deprecated.
|
java.lang.String |
reportAndConfidenceIntervalStudent(double level,
int d)
Deprecated.
|
void |
setConfidenceIntervalNone()
Indicates that no confidence interval needs to be printed in
reports formatted by
report, and shortReport. |
void |
setConfidenceIntervalNormal()
Indicates that a confidence interval on the true mean, based on the
central limit theorem, needs to be included in reports formatted by
report and shortReport. |
void |
setConfidenceIntervalStudent()
Indicates that a confidence interval on the true mean, based on the
normality assumption, needs to be included in
reports formatted by
report and shortReport. |
void |
setConfidenceLevel(double level)
Sets the level of confidence for the intervals on the mean displayed in
reports.
|
void |
setShowNumberObs(boolean showNumObs)
Determines if the number of observations must be displayed in reports.
|
java.lang.String |
shortReport()
Formats and returns a short
statistical report for this tally.
|
java.lang.String |
shortReportHeader()
Returns a string containing
the name of the values returned in the report
strings.
|
double |
standardDeviation()
Returns the sample standard deviation of the observations
since the last initialization.
|
double |
variance()
Returns the sample variance of the observations since the last
initialization.
|
addObservationListener, clearObservationListeners, getName, isBroadcasting, isCollecting, max, min, notifyListeners, removeObservationListener, report, report, setBroadcasting, setCollecting, setName, sumpublic Tally()
public Tally(java.lang.String name)
name - name of the tallypublic void init()
StatProbepublic void add(double x)
notifyListeners.x - observation being added to this tallypublic int numberObs()
public double average()
StatProbepublic double variance()
public double standardDeviation()
public void confidenceIntervalNormal(double level,
double[] centerAndRadius)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)centerAndRadius - array of size 2 in which are returned the center
and radius of the confidence interval, respectivelypublic void confidenceIntervalStudent(double level,
double[] centerAndRadius)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)centerAndRadius - array of size 2 in which are returned the center
and radius of the confidence interval, respectively@Deprecated
public java.lang.String formatConfidenceIntervalNormal(double level,
int d)
@Deprecated public java.lang.String formatConfidenceIntervalNormal(double level)
public java.lang.String formatCINormal(double level,
int d)
confidenceIntervalNormal,
but returns the confidence interval in a formatted string of the form
level - desired probability that the (random) confidence
interval covers the true mean (a constant)d - number of fractional decimal digitspublic java.lang.String formatCINormal(double level)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)@Deprecated
public java.lang.String formatConfidenceIntervalStudent(double level,
int d)
@Deprecated public java.lang.String formatConfidenceIntervalStudent(double level)
public java.lang.String formatCIStudent(double level,
int d)
confidenceIntervalStudent,
but returns the confidence interval in a formatted string of the form
level - desired probability that the (random) confidence
interval covers the true mean (a constant)d - number of fractional decimal digitspublic java.lang.String formatCIStudent(double level)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)public void confidenceIntervalVarianceChi2(double level,
double[] interval)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)interval - array of size 2 in which are returned the left
and right boundaries of the confidence interval, respectivelypublic java.lang.String formatCIVarianceChi2(double level,
int d)
confidenceIntervalVarianceChi2,
but returns the confidence interval in a formatted string of the form
level - desired probability that the (random) confidence
interval covers the true varianced - number of fractional decimal digitspublic java.lang.String report()
public java.lang.String report(double level,
int d)
level - desired probability that the confidence
interval covers the true meand - number of fractional decimal digitspublic java.lang.String shortReportHeader()
StatProbe
System.out.println (probe1.shortReportHeader());
System.out.println (probe1.getName() + " " + probe1.shortReport());
System.out.println (probe2.getName() + " " + probe2.shortReport());
...
Alternatively, one can use report (String,StatProbe[])
to get a report with aligned probe names.shortReportHeader in class StatProbepublic java.lang.String shortReport()
shortReport in class StatProbe@Deprecated
public java.lang.String reportAndConfidenceIntervalStudent(double level,
int d)
@Deprecated public java.lang.String reportAndConfidenceIntervalStudent(double level)
public java.lang.String reportAndCIStudent(double level,
int d)
report), followed by a confidence interval (as in
formatCIStudent), using d fractional decimal digits.level - desired probability that the (random) confidence
interval covers the true mean (a constant)d - number of fractional decimal digitspublic java.lang.String reportAndCIStudent(double level)
reportAndCIStudent
(level, 3).level - desired probability that the (random) confidence
interval covers the true mean (a constant)public double getConfidenceLevel()
public void setConfidenceLevel(double level)
level - desired probability that the (random) confidence
interval covers the true mean (a constant)public void setConfidenceIntervalNone()
report, and shortReport.
This restores the default behavior of the reporting system.public void setConfidenceIntervalNormal()
report and shortReport. The confidence interval is
formatted using formatCINormal.public void setConfidenceIntervalStudent()
report and shortReport.
The confidence interval is formatted using formatCIStudent.public void setShowNumberObs(boolean showNumObs)
showNumObs - the value of the indicator.To submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.