File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/struct-factory/docs/types Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -25,42 +25,42 @@ interface Results<T> {
25
25
/**
26
26
* Boolean indicating whether the null hypothesis was rejected.
27
27
*/
28
- rejected : boolean ;
28
+ rejected ? : boolean ;
29
29
30
30
/**
31
31
* Alternative hypothesis.
32
32
*/
33
- alternative : string ;
33
+ alternative ? : string ;
34
34
35
35
/**
36
36
* Significance level.
37
37
*/
38
- alpha : number ;
38
+ alpha ? : number ;
39
39
40
40
/**
41
41
* p-value.
42
42
*/
43
- pValue : number ;
43
+ pValue ? : number ;
44
44
45
45
/**
46
46
* Test statistic.
47
47
*/
48
- statistic : number ;
48
+ statistic ? : number ;
49
49
50
50
/**
51
51
* Confidence interval.
52
52
*/
53
- ci : T ;
53
+ ci ? : T ;
54
54
55
55
/**
56
56
* Value of the mean under the null hypothesis
57
57
*/
58
- nullValue : number ;
58
+ nullValue ? : number ;
59
59
60
60
/**
61
61
* Standard error of the mean.
62
62
*/
63
- sd : number ;
63
+ sd ? : number ;
64
64
}
65
65
66
66
/**
You can’t perform that action at this time.
0 commit comments