Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 941 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 941 Bytes

MyMakieTools.jl

A self-used Julia package consists of tools for making scientific figures using Makie.jl.

Installation

julia> ]
(@v1.8) pkg> add https://github.com/himcraft/MyMakieTools.jl

Usage

mytheme()

Plotting with custom theme
set_theme!(mytheme())
e.g.

before

after_categorical

logaxis()

Plotting figures with log10 scales

f=Figure()
ax=logaxis(f;title="using logaxis()",xlabel="x-label",ylabel="y-label")

e.g.

before

after

savefig()

Save figure as .png and/or .pdf

f,ax,l=lines(1..10,sin)
savefig("figure_name",f,pdf=true,png=true,prefix="./figures/")