You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The code below explains the issue. If I start by plotting a histogram using default style followed by fivethirtyeight the colors are off. This was tested in Atom.
using PlotlyJS
using Distributions
functionmyhistogram(d)
t0 =histogram(;x=d)
p = [t0]
l =Layout(;title="title")
plot(p,l)
end
d =rand(Exponential(), 10000)
myhistogram(d)
use_style!(:fivethirtyeight)
d =rand(Exponential(), 10000)
myhistogram(d)
Version info
Please provide the following:
output of julia command versioninfo()
julia>versioninfo()
Julia Version 1.0.1
Commit 0d713926f8 (2018-09-2919:05 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin14.5.0)
CPU:Intel(R) Core(TM) i5-8259U CPU @ 2.30GHz
WORD_SIZE:64
LIBM: libopenlibm
LLVM: libLLVM-6.0.0 (ORCJIT, skylake)
Output running the following in Julia 0.7 or greater: using Pkg; pkg"status" (if you are on Julia 0.6 or earlier run Pkg.status())
Describe the bug
The code below explains the issue. If I start by plotting a histogram using
default
style followed byfivethirtyeight
the colors are off. This was tested in Atom.Version info
Please provide the following:
versioninfo()
using Pkg; pkg"status"
(if you are on Julia 0.6 or earlier runPkg.status()
)The text was updated successfully, but these errors were encountered: