Uses of Class
org.statcato.StatcatoDialog

Packages that use StatcatoDialog
org.statcato Provides classes for application main frame, log internal frame, and Datasheet pane. 
org.statcato.dialogs.calc Provides classes for dialogs pertaining to general and statistical calculation tools. 
org.statcato.dialogs.calc.probdist Provides classes for dialogs pertaining to various probability distributions. 
org.statcato.dialogs.data Provides classes for dialogs pertaining to manipulating data, including data patterns and random samples generation, sorting, ranking, and data standardization. 
org.statcato.dialogs.edit Provides classes for dialogs pertaining to editing data in the log pane and Datasheets. 
org.statcato.dialogs.file Provides classes for dialogs pertaining to file operations, including loading datasets and printing. 
org.statcato.dialogs.graph Provides classes for dialogs pertaining to creating graphs. 
org.statcato.dialogs.stat.anova Provides classes for dialogs pertaining to analysis of variance (ANOVA). 
org.statcato.dialogs.stat.basicstats Provides classes for dialogs pertaining to basic descriptive statistics calculation. 
org.statcato.dialogs.stat.ci Provides classes for dialogs pertaining to confidence interval calculations. 
org.statcato.dialogs.stat.correg Provides classes for dialogs pertaining to correlation and regression. 
org.statcato.dialogs.stat.hytest Provides classes for dialogs pertaining to hypothesis tests. 
org.statcato.dialogs.stat.multinomial Provides classes for dialogs pertaining to multinomial experiments. 
org.statcato.dialogs.stat.nonparametrics Provides classes for dialogs pertaining to nonparametric statistics. 
org.statcato.dialogs.stat.samplesize Provides classes for dialogs pertaining to sample size calculations. 
 

Uses of StatcatoDialog in org.statcato
 

Subclasses of StatcatoDialog in org.statcato
 class AboutDialog
          A dialog that shows information about Statcato (e.g.
 class CheckUpdatesDialog
          A dialog that checks if a new version is available from the Statcato web site.
 

Methods in org.statcato that return StatcatoDialog
 StatcatoDialog DialogHistoryList.getDialog(int index)
          Returns the dialog at the given position.
 

Methods in org.statcato with parameters of type StatcatoDialog
 void DialogHistoryList.addDialog(StatcatoDialog dialog)
          Adds a dialog to the history list.
 

Uses of StatcatoDialog in org.statcato.dialogs.calc
 

Subclasses of StatcatoDialog in org.statcato.dialogs.calc
 class CalculatorDialog
           
 class FrequencyTableDialog
          A dialog for creating a frequency table for a given set of data.
 class PvalueDialog
          A dialog for computing p-Values of four types of distributions (normal, Student's t, chi-square, and F) and three types of tests (left-tail, right-tail, and two-tail), given the distribution parameters and test statistic.
 

Uses of StatcatoDialog in org.statcato.dialogs.calc.probdist
 

Subclasses of StatcatoDialog in org.statcato.dialogs.calc.probdist
 class BinomialDistributionDialog
          A dialog for binomial probability distribution.
 class ChiSquareDistributionDialog
          A dialog for Chi-square probability distribution.
 class DiscreteDistributionDialog
          A dialog for discrete probability distribution, where probabilites of discrete values are specified.
 class ExponentialDistributionDialog
          A dialog for exponential probability distribution.
 class FDistributionDialog
          A dialog for F probability distribution.
 class GeometricDistributionDialog
          A dialog for geometric probability distribution.
 class IntegerDistributionDialog
          A dialog for integer probability distribution, specified by a minimum and maximum value.
 class NormalDistributionDialog
          A dialog for normal probability distribution.
 class PoissonDistributionDialog
          A dialog for Poisson probability distribution.
 class StudentTDistributionDialog
          A dialog for Student's t probability distribution.
 class UniformDistributionDialog
          A dialog for uniform probability distribution.
 

Uses of StatcatoDialog in org.statcato.dialogs.data
 

Subclasses of StatcatoDialog in org.statcato.dialogs.data
 class ArbitraryDataPatternDialog
          A dialog for creating a data sequence from a given arbitrary data pattern.
 class BinomialSampleDialog
          A dialog for creating random samples from a binomial distribution.
 class DisplayDataDialog
          A dialog allowing the user to select which columns in the current Datasheet are displayed in the log window.
 class IntegerSampleDialog
          A dialog for generating random samples from an integer distribution.
 class NormalSampleDialog
          A dialog fot generating random samples from a normal distribution.
 class RankDialog
          A dialog for ranking data values in the Datasheet.
 class SampleFromColumnDialog
          A dialog for generating random samples from a column of data values.
 class SimpleNumberPatternDialog
          A dialog for generating a simple number pattern in which numbers of evenly spaced.
 class SortDialog
          A dialog providing options to sort a set of columns by up to four columns.
 class StandardizeDialog
          A dialog for standardizing data values.
 class TransposeDialog
          A dialog for transpose a row of data to a column and vice versa.
 class UniformSampleDialog
          A dialog that generates random samples from a uniform continuous distribution.
 

Uses of StatcatoDialog in org.statcato.dialogs.edit
 

Subclasses of StatcatoDialog in org.statcato.dialogs.edit
 class AddMultipleRowColDialog
          A dialog that allows the user to add a number of rows and columns to the current Datasheet.
 

Uses of StatcatoDialog in org.statcato.dialogs.file
 

Subclasses of StatcatoDialog in org.statcato.dialogs.file
 class LoadDatasetDialog
          A dialog that allows the user to load a built-in dataset or a dataset from a web address into the Datasheet pane.
 class OptionsDialog
           
 class PrintDatasheetDialog
          A dialog that provides print options and prints the active Datasheet.
 class PrintLogDialog
          A dialog that provides print options and prints the log window.
 

Uses of StatcatoDialog in org.statcato.dialogs.graph
 

Subclasses of StatcatoDialog in org.statcato.dialogs.graph
 class BarChartDialog
          A dialog for creating bar charts.
 class BoxPlotDialog
          A dialog for creating a box plot.
 class DotPlotDialog
          A dialog for creating dot plots.
 class HistogramDialog
          A dialog for creating histograms.
 class NormalQuantilePlotDialog
          A dialog for creating normal quantile (probability) plot.
 class PieChartDialog
          A dialog for creating pie charts.
 class ScatterplotDialog
          A dialog for creating scatterplots.
 class StemAndLeafPlotDialog
          A dialog for creating stem-and-leaf plots.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.anova
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.anova
 class OneWayANOVADialog
          A dialog for one-way ANOVA (analysis of variance).
 class TwoWayANOVADialog
          A dialog for two-way ANOVA (analysis of variance).
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.basicstats
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.basicstats
 class ColumnStatisticsDialog
          A dialog for computing descriptive statistics for a column of data values.
 class DescriptiveStatisticsDialog
          A dialog for computing descriptive statistics of a set of columns/ data variables.
 class NormalityTestDialog
           
 class RowStatisticsDialog
          A dialog for computing statistics for each row in a set of columns and storing the results in the corresponding rows of a new column.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.ci
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.ci
 class CI1PopMeanDialog
          A dialog for creating confidence intervals for one population mean, given the confidence level and whether the population standard deviation is known or unknown.
 class CI1PopPropDialog
          A dialog for creating confidence intervals for one population proportion, given the confidence level.
 class CI1PopVarDialog
          A dialog for creating confidence intervals for one population variance, given the confidence level.
 class CI2PopMeanDialog
          A dialog for creating confidence intervals for two population means, given the confidence level, population standard deviations (if known), and whether population variances are assumed equal.
 class CI2PopPropDialog
          A dialog for creating confidence intervals for two population proportions, given the confidence level.
 class CI2PopVarDialog
          A dialog for creating confidence intervals for two population variances, given the confidence level.
 class CIMatchedPairsDialog
          A dialog for creating confidence intervals for matched pairs, given the confidence level.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.correg
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.correg
 class CorrelationRegressionDialog
          A dialog for linear correlation and regression between two variables.
 class MultipleRegressionDialog
          A dialog for multiple regression between multiple variables.
 class NonLinearModelsDialog
          A dialog that allows the user to fit a non-linear mathematical regression model to two variables.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.hytest
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.hytest
 class HyTest1PopMeanDialog
          A dialog for testing claims about a population mean for the case population standard deviation is known and the case when it is unknown.
 class HyTest1PopPropDialog
          A dialog for testing claims about a population proportion.
 class HyTest1PopVarDialog
          A dialog for testing claims about a population variance or standard deviation.
 class HyTest2PopMeanDialog
          A dialog for claims about the difference of two population means from two independent samples.
 class HyTest2PopPropDialog
          A dialog for claims about the difference of two population proportions.
 class HyTest2PopVarDialog
          A dialog for claims about the two population variances.
 class HyTestConclusionDialog
          Dialog for hypothesis test conclusion tool.
 class HyTestMatchedPairsDialog
          A dialog for testing claims about the mean of the differences between a population of matched pairs.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.multinomial
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.multinomial
 class ContingencyTableDialog
          A dialog for a chi-square contingency table test given a significance level.
 class CrossTabulationDialog
          A dialog for cross tabulation and Chi-square test.
 class GoodnessOfFitDialog
          A dialog for a chi-square goodness-of-fit test given a significance level.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.nonparametrics
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.nonparametrics
 class KruskalWallisDialog
          A dialog for the Kruskal-Wallis Test
 class MatchedPairSignTestDialog
          A dialog for the matched-pair sign test (distribution-free, two-sample).
 class RankCorrelationDialog
          A dialog for Spearman's rank correlation.
 class RunsTestDialog
          A dialog for Spearman's rank correlation.
 class SignTestDialog
          A dialog for the sign test (distribution-free, one-sample).
 class WilcoxonRankSumTestDialog
           
 class WilcoxonSignedRankTestDialog
          A dialog for Wilcoxon signed rank test for one sample or two samples of matched pairs.
 

Uses of StatcatoDialog in org.statcato.dialogs.stat.samplesize
 

Subclasses of StatcatoDialog in org.statcato.dialogs.stat.samplesize
 class SampleSizeMeanDialog
          A dialog for determining the sample size required to estimate a population mean.
 class SampleSizePropDialog
          A dialog for determining the sample size required to estimate a population proportion.