Skip to content

Commit 9e4910d

Browse files
committed
Transformations
1 parent 686b831 commit 9e4910d

File tree

9 files changed

+194
-253
lines changed

9 files changed

+194
-253
lines changed

docs/make.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ makedocs(
1414
"cov.md",
1515
"robust.md",
1616
"ranking.md",
17-
"empirical.md"]
17+
"empirical.md",
18+
"transformations.md"]
1819
)
1920

2021
deploydocs(

docs/src/empirical.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ merge!
1818
merge
1919
midpoints
2020
norm
21-
normalize
22-
normalize!
21+
normalize(h::Histogram{T,N}) where {T<:AbstractFloat,N}
22+
normalize(h::Histogram{T,N}, aux_weights::Array{T,N}...) where {T<:AbstractFloat,N}
23+
normalize!(h::Histogram{T,N}, aux_weights::Array{T,N}...) where {T<:AbstractFloat,N}
2324
zero
2425
```
2526

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ corrections where necessary.
1111

1212
```@contents
1313
Pages = ["weights.md", "scalarstats.md", "cov.md", "robust.md", "ranking.jl",
14-
"empirical.md"]
14+
"empirical.md", "transformations.md"]
1515
Depth = 2
1616
```

docs/src/multivariate.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/src/signalcorr.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/Statistics.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ export std, stdm, var, varm, mean!, mean,
4141
# empirical.jl
4242
ecdf, ECDF,
4343
# hist.jl
44-
fit, AbstractHistogram, Histogram, midpoints, norm, normalize, normalize!
44+
fit, AbstractHistogram, Histogram, midpoints, norm, normalize, normalize!,
45+
# transformations
46+
unnormalize, unnormalize!,
47+
AbstractNormalization, MinMaxNormalization, ZScoreNormalization
4548

4649
include("common.jl")
4750
include("weights.jl")
@@ -56,6 +59,7 @@ include("ranking.jl")
5659
include("rankcorr.jl")
5760
include("empirical.jl")
5861
include("hist.jl")
62+
include("transformations.jl")
5963

6064
##### mean #####
6165

0 commit comments

Comments
 (0)