File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ y = [1 2 3; 2 4 6]
43
43
ŷ = [2 3 4 ; 4 6 8 ]
44
44
45
45
julia> multitarget_L1 (ŷ, y, weights)
46
- 10.5
46
+ 39
47
47
```
48
48
49
49
``` julia
@@ -52,18 +52,17 @@ t = y' |> Tables.table |> Tables.rowtable
52
52
t̂ = ŷ' |> Tables. table |> Tables. rowtable
53
53
54
54
julia> multitarget_L1 (t̂, t, weights)
55
- 10.5
55
+ 39
56
56
```
57
57
58
- Access per-observation measurements with the measurement method:
58
+ Access per-observation measurements with the ` measurement ` method:
59
59
60
60
``` julia
61
61
julia> measurements (multitarget_L1, t̂, t, weights)
62
-
63
- 3 - element Vector{Float64}:
64
- 12.0
65
- 10.5
66
- 9.0
62
+ 3 - element Vector{Int64}:
63
+ 3
64
+ 9
65
+ 27
67
66
```
68
67
69
68
See [ here] ( https://juliaai.github.io/StatisticalMeasuresBase.jl/dev/ ) for in-depth
Original file line number Diff line number Diff line change 5
5
| [ ` measurements ` ] ( @ref ) | for returning individual per-observation measurements |
6
6
| [ ` aggregate ` ] ( @ref ) | multipurpose measurement aggregation |
7
7
8
- The [ ` aggregate ` ] ( @ref ) method takes an optional aggregation ` mode ` argument, with default
9
- ` Mean() ` , whose possible values are explained below.
8
+ The [ ` aggregate ` ] ( @ref ) method and [ ` multimeasure ` ] ( @ref ) wrapper take an optional
9
+ aggregation ` mode ` argument, with default ` Mean() ` , whose possible values are explained
10
+ below.
10
11
11
12
``` @docs
12
13
StatisticalMeasuresBase.AggregationMode
You can’t perform that action at this time.
0 commit comments