Package edu.cmu.tetrad.search
Interface EffectiveSampleSizeSettable
- All Known Implementing Classes:
IndTestChiSquare
,IndTestFisherZ
,IndTestGSquare
,MarkovCheck
public interface EffectiveSampleSizeSettable
Gives an interface for classes where the effective sample size can be set by the user. This is useful when the sample
size of the data or covariance matrix is not the sample size that the class should use, as for example, in the case
of bootstrapping or subsampling.
- Author:
- josephramsey
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setEffectiveSampleSize
(int sampleSize) Sets the sample size if the sample size of the data or covariance matrix is not the sample size that should be used by the class.
-
Method Details
-
setEffectiveSampleSize
void setEffectiveSampleSize(int sampleSize) Sets the sample size if the sample size of the data or covariance matrix is not the sample size that should be used by the class.- Parameters:
sampleSize
- The sample size to use.
-