We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
surface plots using pyplot backend plus :bright, :vibrant or :mute themes causes jumbled plot colors.
surface
pyplot
:bright
:vibrant
:mute
import Plots Plots.pyplot() Plots.theme(:vibrant) x = collect(-10:10) y = collect(-10:10) z = (x,y) -> (x-y)^2 Plots.surface(x,y,z)
This bug occurs on ( insert x below )
x
Plots.jl version: v1.1.2 [91a5bcdd] Output of versioninfo():
versioninfo()
julia> versioninfo() Julia Version 1.3.0 Commit 46ce4d7933 (2019-11-26 06:09 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) CPU: Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-6.0.1 (ORCJIT, broadwell) Environment: JULIA_NUM_THREADS = 16
The text was updated successfully, but these errors were encountered:
@atgmello I advise against using these themes (:bright, :vibrant or :mute) in general
And perhaps we have to deprecate them as they are not even themes, but just colormaps @daschw ?
I suggest using this
surface(x,y,z, c=:balance)
For more details, go to http://docs.juliaplots.org/latest/generated/colorschemes/
Sorry, something went wrong.
Yeah, this is enough for what I need! Thanks for the tip @isentropic .
No branches or pull requests
Details
surface
plots usingpyplot
backend plus:bright
,:vibrant
or:mute
themes causes jumbled plot colors.Backends
This bug occurs on ( insert
x
below )Versions
Plots.jl version: v1.1.2 [91a5bcdd]
Output of
versioninfo()
:The text was updated successfully, but these errors were encountered: