https://github.com/djsegal/simpleplots.jl
Plots made Simple 📉
https://github.com/djsegal/simpleplots.jl
julia plots simple
Last synced: 15 days ago
JSON representation
Plots made Simple 📉
- Host: GitHub
- URL: https://github.com/djsegal/simpleplots.jl
- Owner: djsegal
- License: mit
- Created: 2020-04-23T23:39:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-11T19:49:51.000Z (almost 5 years ago)
- Last Synced: 2024-11-11T05:34:31.177Z (6 months ago)
- Topics: julia, plots, simple
- Language: Jupyter Notebook
- Homepage:
- Size: 1.27 MB
- Stars: 31
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### SimplePlots.jl
##### Plots in 5 seconds or your money back[](https://djsegal.github.io/SimplePlots.jl/stable)
[](https://djsegal.github.io/SimplePlots.jl/dev)
[](https://travis-ci.com/djsegal/SimplePlots.jl)
[](https://codecov.io/gh/djsegal/SimplePlots.jl)---
+ To load use:
```julia
] add https://github.com/djsegal/SimplePlots.jl
using SimplePlots
```+ A simple test case is:
```julia
scatter(
rand(10), label="Scatter", color=4,
xlabel="x", markersize=6
)ylabel!("y")
cur_x = 10 .^ (0:0.1:1)
cur_y = rand(0.25:0.05:0.75, length(cur_x))plot!(cur_x, cur_y, label="Plot", color=3, title="Example")
hline!([1,3] ./ 4, color=2)
vline!(5, linewidth=4, alpha=0.4, linestyle=:dash)plot!(xlim=(1,15))
ylims!(0,1)
xscale!(:log10)
```