44#:set RC_KINDS_TYPES = REAL_KINDS_TYPES + CMPLX_KINDS_TYPES
55module stdlib_experimental_stats
66 !! Provides support for various statistical methods. This includes currently
7- !! descriptive statistics.
8- !!
9- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html).__
7+ !! descriptive statistics
8+ !! ([Specification](../page/specs/stdlib_experimental_stats.html))
109 use stdlib_experimental_kinds, only: sp, dp, qp, &
1110 int8, int16, int32, int64
1211 implicit none
@@ -16,8 +15,7 @@ module stdlib_experimental_stats
1615
1716 interface cov
1817 !! Covariance of array elements
19- !!
20- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description)__
18+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description))
2119 #:for k1, t1 in RC_KINDS_TYPES
2220 #:set RName = rname("cov",1, t1, k1)
2321 module function ${RName}$(x, dim, mask, corrected) result(res)
@@ -114,8 +112,7 @@ module stdlib_experimental_stats
114112
115113 interface mean
116114 !! Mean of array elements
117- !!
118- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_1)__
115+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1))
119116 #:for k1, t1 in RC_KINDS_TYPES
120117 #:for rank in RANKS
121118 #:set RName = rname("mean_all",rank, t1, k1)
@@ -213,8 +210,7 @@ module stdlib_experimental_stats
213210
214211 interface var
215212 !! Variance of array elements
216- !!
217- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_3)__
213+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3))
218214
219215 #:for k1, t1 in RC_KINDS_TYPES
220216 #:for rank in RANKS
@@ -320,9 +316,8 @@ module stdlib_experimental_stats
320316
321317
322318 interface moment
323- !! Central moment of array elements
324- !!
325- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_2)__
319+ !! Central moment of array elements
320+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2))
326321 #:for k1, t1 in RC_KINDS_TYPES
327322 #:for rank in RANKS
328323 #:set RName = rname("moment_all",rank, t1, k1)
0 commit comments