1
1
``` @raw html
2
2
<script async defer src="https://buttons.github.io/buttons.js"></script>
3
+
4
+ <div style="font-size:1.4em;font-weight:bold;">
5
+ <a href="tutorial"
6
+ style="color: #389826;">Tutorial</a> |
7
+ <a href="https://juliaai.github.io/StatisticalMeasuresBase.jl/dev/implementing_new_measures/#definitions"
8
+ style="color: #9558B2;">What is a measure?</a>
9
+ </div>
10
+
3
11
<span style="color: #9558B2;font-size:4.5em;">
4
12
StatisticalMeasuresBase.jl</span>
5
13
<br>
@@ -45,18 +53,12 @@ t̂ = ŷ' |> Tables.table |> Tables.rowtable
45
53
multitarget_L1(t̂, t, weights)
46
54
```
47
55
48
- Access per-observation measurements with the ` measurement ` method:
56
+ Generate measurements * for each observation * with the ` measurement ` method:
49
57
50
58
``` @example 01
51
59
measurements(multitarget_L1, t̂, t, weights)
52
60
```
53
61
54
- ### Quick links
55
-
56
- - [ Tutorial] ( @ref ) , to jump right into building new measures
57
- - [ What is a measure?] (@ref definitions)
58
-
59
-
60
62
# Overview
61
63
62
64
This package specifies [ an interface] (@ref definitions) for statistical measures (metrics)
@@ -74,9 +76,9 @@ Specically, this package provides:
74
76
function) that consumes single observations to measures consuming vectors, arrays or
75
77
tables (multi-target measures).
76
78
77
- - Other [ wrappers] (@ref wrappers) to add missing value support, argument checks,
78
- direct callability, or to silently treat unsupported weights as uniform (good for
79
- application of a batch of measures with mixed degrees of weight support)
79
+ - Other [ wrappers] (@ref wrappers) to add missing value support, argument checks, or to
80
+ silently treat unsupported weights as uniform (good for application of a batch of
81
+ measures with mixed degrees of weight support)
80
82
81
83
- [ ` measurements ` ] ( @ref ) , a method to return * unaggregated* measurements
82
84
0 commit comments