Created
July 23, 2021 09:25
-
-
Save pranjalAI/cf0707f36858051b2d78c4dd7f03762e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bokeh.plotting import figure, output_file, show | |
plot = figure(plot_width=300, plot_height=300) | |
plot.annulus(x=[1, 2, 3], y=[1, 2, 3], color="#7FC97F", | |
inner_radius=0.2, outer_radius=0.5) | |
show(plot) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment