Skip to content

Instantly share code, notes, and snippets.

@pranjalAI
Created July 23, 2021 09:25
Show Gist options
  • Save pranjalAI/cf0707f36858051b2d78c4dd7f03762e to your computer and use it in GitHub Desktop.
Save pranjalAI/cf0707f36858051b2d78c4dd7f03762e to your computer and use it in GitHub Desktop.
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