Skip to content
New issue

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

Error: Not showing python's bokeh plot on jupyter notebook when using PyCall.jl + py""" ~ """ #1030

Open
kyhps2 opened this issue Mar 6, 2023 · 0 comments

Comments

@kyhps2
Copy link

kyhps2 commented Mar 6, 2023

I want to include interactive log plot with python's bokeh package and PyCall.jl
(https://docs.bokeh.org/en/latest/docs/examples/basic/axes/logplot.html)

However, outputing the interactive plot in jupyter notebook doesn't work when using PyCall.jl + py"""~"""
Here is my code.

Any ideas?

using PyCall

py"""
import numpy as np
from bokeh.plotting import figure, show
from bokeh.io import output_notebook
output_notebook()      # outputing visualization in jupyter notebook!! 

x = np.linspace(0.1, 5, 80)
p = figure(title="log axis example", y_axis_type="log",
           x_range=(0, 5), y_range=(0.001, 10.0**22),
           background_fill_color="#fafafa")

p.line(x, np.sqrt(x), legend_label="y=sqrt(x)",
       line_color="tomato", line_dash="dashed")

p.line(x, x, legend_label="y=x")
p.scatter(x, x, legend_label="y=x")

p.line(x, x**2, legend_label="y=x**2")
p.scatter(x, x**2, legend_label="y=x**2",
          fill_color=None, line_color="olivedrab")

p.line(x, 10**x, legend_label="y=10^x",
       line_color="gold", line_width=2)

p.line(x, x**x, legend_label="y=x^x",
       line_dash="dotted", line_color="indigo", line_width=2)

p.line(x, 10**(x**2), legend_label="y=10^(x^2)",
       line_color="coral", line_dash="dotdash", line_width=2)

p.legend.location = "top_left"

show(p)

"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant