The Anova class provides the functions necessary for performing a one-way ANalysis Of VAriance (ANOVA) on the input data matrix x.
The Anova class provides the functions necessary for performing a one-way ANalysis Of VAriance (ANOVA) on the input data matrix x. The data matrix: row i - i-th group/treatment column j - j-th replica
The BatchVector
class contains a StatVector
for maintaining experimental
data in multiple batches and methods for computing statistics on these data.
The BatchVector
class contains a StatVector
for maintaining experimental
data in multiple batches and methods for computing statistics on these data.
Ex: It can be used to support the Method of Batch Means (MBM).
The GoodnessOfFit
class is used to fit data to probability distibutions.
The Histogram
class takes a vector of values, counts the number of values
in each of several intervals and displays the counts vertically in a
histogram.
The StatTable
class display statistical results in a frame's table.
The StatVector
class provides methods for computing common statistics on a
data vector.
The StatVector
class provides methods for computing common statistics on a
data vector. Both maximum likelihood (the default) and unbiased estimators
are supported. Unbiased should only be used on sample (not population) data.
Ex: It can be used to support the Method of Independent Replications (MIR).
The Statistic
class is used to collect values and compute sample statistics
on them (e.g., Waiting Time).
The Statistic
class is used to collect values and compute sample statistics
on them (e.g., Waiting Time). Contrast with TimeStatistic defined below.
The TimeStatistic
class is used to collect values and compute time-persistent
statistics on them (e.g., Number in Queue).
The TimeStatistic
class is used to collect values and compute time-persistent
statistics on them (e.g., Number in Queue).
http://staff.unak.is/andy/Year%203%20Simulation/Laboratories/v4manual/internal.htm
This object is used to test the Anova class.
This object is used to test the Anova class.
http://wiki.uiowa.edu/display/bstat/One-way+fixed+effects+ANOVA
The BatchVectorTest
object provides an example of how to use the BatchVector
class to implement the Method of Batch Means (MBM).
The GoodnessOfFitTest
object is used to test the GoodnessOfFit
class.
The GoodnessOfFitTest
object is used to test the GoodnessOfFit
class.
http://www.seattlecentral.edu/qelp/sets/057/057.html
The HistogramTest
object is used to test the Histogram
class.
The MethodOfMoments
object provides methods for estimating parameters
for popular probability distributions using the Method of Moments (MOM).
The MethodOfMoments
object provides methods for estimating parameters
for popular probability distributions using the Method of Moments (MOM).
The main alternative is to use Maximum Likelihood Estimators (MLE).
http://www.math.uah.edu/stat/point/Moments.html
The Q_Q_Plot
object produces Quantile-Quantile plots that are used to
compare probability distributions.
The Q_Q_PlotTest
object is used to test the Q_Q_Plot
object.
The StatTableTest
is used to test the StatTable
class.
The StatVector
companion object provides methods for building StatVector
s.
The StatVectorTest
object is used to test the StatVector
class.
The StatVectorTest2
object provides an example of how to use the StatVector
class to implement the Method of Independent Replications (MIR) following
a simple two-stage procedure.
The Statistic
companion object provides additional values and functions.
The StatisticTest
object is used to test the Statistic
and TimeStatistic
classes.
The TimeStatistic
companion object provides additional functions.
The stat package contains classes, traits and objects for basic statistical functions and analyses.