@@ -15,6 +15,8 @@ module stdlib_experimental_stats
15
15
16
16
17
17
interface corr
18
+ !! Pearson correlation of array elements
19
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description))
18
20
#:for k1, t1 in RC_KINDS_TYPES
19
21
#:set RName = rname("corr",1, t1, k1)
20
22
module function ${RName}$(x, dim, mask) result(res)
@@ -104,7 +106,7 @@ module stdlib_experimental_stats
104
106
105
107
interface cov
106
108
!! Covariance of array elements
107
- !! ([Specification](../page/specs/stdlib_experimental_stats.html#description ))
109
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1 ))
108
110
#:for k1, t1 in RC_KINDS_TYPES
109
111
#:set RName = rname("cov",1, t1, k1)
110
112
module function ${RName}$(x, dim, mask, corrected) result(res)
@@ -201,7 +203,7 @@ module stdlib_experimental_stats
201
203
202
204
interface mean
203
205
!! Mean of array elements
204
- !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1 ))
206
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2 ))
205
207
#:for k1, t1 in RC_KINDS_TYPES
206
208
#:for rank in RANKS
207
209
#:set RName = rname("mean_all",rank, t1, k1)
@@ -299,7 +301,7 @@ module stdlib_experimental_stats
299
301
300
302
interface var
301
303
!! Variance of array elements
302
- !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3 ))
304
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_4 ))
303
305
304
306
#:for k1, t1 in RC_KINDS_TYPES
305
307
#:for rank in RANKS
@@ -406,7 +408,7 @@ module stdlib_experimental_stats
406
408
407
409
interface moment
408
410
!! Central moment of array elements
409
- !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2 ))
411
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3 ))
410
412
#:for k1, t1 in RC_KINDS_TYPES
411
413
#:for rank in RANKS
412
414
#:set RName = rname("moment_all",rank, t1, k1)
0 commit comments