次の例を呼び出すと、きれいなレポートを受け取りますが、具体的には 95% の信頼度があります。
julia> OneSampleTTest([1,2,3], 2)
One sample t-test
-----------------
Population details:
parameter of interest: Mean
value under h_0: 2
point estimate: 2.0
95% confidence interval: (-0.48413771175033027,4.48413771175033)
Test summary:
outcome with 95% confidence: fail to reject h_0
two-sided p-value: 1.0 (not significant)
Details:
number of observations: 3
t-statistic: 0.0
degrees of freedom: 2
empirical standard error: 0.5773502691896258
同様のレポートを受け取りたいのですが、信頼度は 99% です。
parameter を受け取るOneSampleTest
method を実装するドキュメントの状態ですが、上記のように完全なレポートは得られません。confint
alpha