Skip to content

Commit

Permalink
fix doc problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Sep 23, 2024
1 parent 81393c6 commit 3199b07
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ minimum_pairwise_distance

## Generalized (entropy) dimension

Based on the definition of the Generalized entropy ([`genentropy`](@ref)), one can calculate an appropriate dimension, called *generalized dimension*:
Based on the definition of the generalized (Renyi) entropy, one can calculate an appropriate dimension, called *generalized dimension*:
```@docs
generalized_dim
molteno_dim
Expand Down
19 changes: 9 additions & 10 deletions docs/style.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# %% Color theme definitions
# Color theme definitions
struct CyclicContainer <: AbstractVector{String}
c::Vector{String}
n::Int
Expand All @@ -17,23 +17,22 @@ end
Base.iterate(c::CyclicContainer, i = 1) = iterate(c.c, i)

COLORSCHEME = [
"#6D44D0",
"#2CB3BF",
"#1B1B1B",
"#DA5210",
"#03502A",
"#866373",
"#7143E0",
"#191E44",
"#0A9A84",
"#AF9327",
"#791457",
"#6C768C",
]

COLORS = CyclicContainer(COLORSCHEME)
LINESTYLES = CyclicContainer(["-", ":", "--", "-."])

# %% Makie styling
# other styling elements for Makie
set_theme!(;
palette = (color = COLORSCHEME,),
fontsize = 22,
figure_padding = 4,
resolution = (1000, 500),
figure_padding = 8,
size = (800, 400),
linewidth = 3.0,
)
2 changes: 1 addition & 1 deletion src/corrsum_based/correlationsum_boxassisted.jl
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ using Random: shuffle!
Estimate a reasonable size for boxing `X`, proposed by
Bueno-Orovio and Pérez-García [BuenoOrovio2007](@cite), before calculating the correlation
dimension as presented by [Theiler1983](@cite).
dimension as presented by [Theiler1987](@cite).
Return the size `r0` and the minimum interpoint distance `ε0` in the data.
If instead of boxes, prisms
Expand Down

0 comments on commit 3199b07

Please sign in to comment.