Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bab5335

Browse files
committed
Deploying to master from @ 32a83be πŸš€
1 parent 4a5c6e0 commit bab5335

File tree

21 files changed

+94
-18
lines changed

21 files changed

+94
-18
lines changed
17.1 KB
Loading
49.4 KB
Loading
14.5 KB
Loading

β€Žassets/menu1/filledStep.jlβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using Gnuplot, Random
2+
x = randn(1000)
3+
h = hist(x, bs = 0.1)
4+
c = "#1E90FF"
5+
@gp h.bins h.counts "with fillsteps tit 'data' lc '$(c)' fs solid 0.3 noborder"
6+
@gp :- h.bins h.counts "with steps tit '' lc '$(c)' lw 2" "set grid"
7+
save(term="pngcairo size 600,400", output = "FilledStep.png")

β€Žassets/menu1/lineSmarkers.jlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using Gnuplot, ColorSchemes
2+
@gp key="left" linetypes(:seaborn_colorblind, dashed=true, ps=2)
3+
for i in 1:10
4+
@gp :- i .* (0:10) "w lp t '$i'"
5+
end
6+
save(term ="pngcairo size 600,400", output ="./code/lineSmarkers.png") # hide

β€Žassets/menu1/stepPlot.jlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using Gnuplot, Random
2+
x = randn(1000)
3+
h = hist(x, bs = 0.1)
4+
c = "#1E90FF"
5+
@gp h.bins h.counts "with steps tit '' lc '$(c)' lw 2" "set grid"
6+
save(term="pngcairo size 600,400", output = "stepPlot.png")
17.1 KB
Loading
136 KB
Loading
30.7 KB
Loading
-428 Bytes
Loading

0 commit comments

Comments
Β (0)