Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
turbulent-channel-model
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Krimmer
turbulent-channel-model
Commits
07d0a39f
Commit
07d0a39f
authored
1 year ago
by
Jonas Krimmer
Browse files
Options
Downloads
Patches
Plain Diff
fix default plot settings
parent
530ed177
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plot_basics.jl
+12
-7
12 additions, 7 deletions
src/plot_basics.jl
with
12 additions
and
7 deletions
src/plot_basics.jl
+
12
−
7
View file @
07d0a39f
using
LinearAlgebra
using
PlotlyLight
using
PlotlyKaleido
using
Cobweb
using
Colors
using
ColorSchemes
using
StatsBase
try
PlotlyKaleido
.
start
()
# start Kaleido server
catch
err
@warn
err
end
preset
.
template
.
plotly!
()
# initialize plotly template
preset
.
template
.
plotly
_white
!
()
# initialize plotly template
# use custom colorscale from Okabe Ito -> color deficiency compatible and configure default styling
# default_colorway = hex.(ColorSchemes.okabe_ito)
default_colorway
=
[
"#636EFA"
,
"#EF553B"
,
"#00CC96"
,
"#AB63FA"
,
"#FFA15A"
,
"#19D3F3"
,
"#FF6692"
,
"#B6E880"
,
"#FF97FF"
,
"#FECB52"
]
PlotlyLight
.
settings
.
layout
=
Config
(
xaxis
=
Config
(
ticks
=
"inside"
,
showline
=
true
,
zeroline
=
false
),
#, automargin=true, constrain="domain", linewidth=1),
yaxis
=
Config
(
ticks
=
"inside"
,
showline
=
true
,
zeroline
=
false
),
#, automargin=true, constrain="domain", linewidth=1),
legend
=
Config
(
orientation
=
"h"
,
xanchor
=
"center"
,
x
=
0.5
,
y
=
1.2
),
colorway
=
default_colorway
PlotlyLight
.
settings
.
layout
=
merge
(
Config
(
xaxis
=
Config
(
ticks
=
"inside"
,
showline
=
true
,
zeroline
=
false
),
#, automargin=true, constrain="domain", linewidth=1),
yaxis
=
Config
(
ticks
=
"inside"
,
showline
=
true
,
zeroline
=
false
),
#, automargin=true, constrain="domain", linewidth=1),
legend
=
Config
(
orientation
=
"h"
,
xanchor
=
"center"
,
x
=
0.5
,
y
=
1.2
),
colorway
=
default_colorway
),
PlotlyLight
.
settings
.
layout
)
"""
...
...
@@ -28,7 +33,7 @@ PlotlyLight.settings.layout = Config(
Heatmap-like plot of an image representing magnitude and phase of a complex-valued 2D array.
"""
function
complex_plot
(;
demean
=
true
,
normalize
=
false
,
z
=
[],
fixhover
=
fals
e
,
kwargs
...
)
function
complex_plot
(;
demean
=
true
,
normalize
=
false
,
z
=
[],
fixhover
=
tru
e
,
kwargs
...
)
# constant lightness colormap from cmocean -> perceptually uniform!
cmap
=
ColorSchemes
.
phase
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment