Hi there,
I really enjoy Plots and GR (independently and as a backend for Plots). Thanks to the devs for putting all that love into it.
Up until now I’ve used whatever suited my specific plotting needs but I’m starting to move towards Plots as my main tool.
However, I personally like the default style/theme of GR better than Plots and would like to get that with Plots as well. See examples:
using Plots, GR
x = 0:0.1:4pi
y = sin.(x)
GR.plot(x,y)
# or
Plots.plot(x,y)
Output from GKSTerm with GR
Output from GKSTerm with Plots
This is purely aesthetics but is it something I can change in Plots?
versioninfo()
Julia Version 0.6.0
Commit 903644385b (2017-06-19 13:05 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin13.4.0)
CPU: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.9.1 (ORCJIT, skylake)
Thanks in advance,
Oliver