We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d1c841 commit 3435aabCopy full SHA for 3435aab
README.md
@@ -43,7 +43,7 @@ y = [1 2 3; 2 4 6]
43
ŷ = [2 3 4; 4 6 8]
44
45
julia> multitarget_L1(ŷ, y, weights)
46
-10.5
+39
47
```
48
49
```julia
@@ -52,18 +52,18 @@ t = y' |> Tables.table |> Tables.rowtable
52
t̂ = ŷ' |> Tables.table |> Tables.rowtable
53
54
julia> multitarget_L1(t̂, t, weights)
55
56
57
58
Access per-observation measurements with the measurement method:
59
60
61
julia> measurements(multitarget_L1, t̂, t, weights)
62
63
-3-element Vector{Float64}:
64
- 12.0
65
- 10.5
66
- 9.0
+3-element Vector{Int64}:
+ 3
+ 9
+ 27
67
68
69
See [here](https://juliaai.github.io/StatisticalMeasuresBase.jl/dev/) for in-depth
0 commit comments