When drawing a circle with Bokeh, I saw the dimensions were not quite right. Circle image
Here's the code I used to generate the circle, with two lines (one horizontal, one vertical) for comparison:
from bokeh.plotting import figure, show
plot = figure(width=800, height=800, x_range=(-100, 100), y_range=(-100, 100))
plot.circle(x=0, y=0, radius=90, line_color='black', color='black', fill_color=None)
plot.line([0, 90], [0, 0])
plot.line([0, 0], [0, 90])
show(plot)
Any idea what the issue might be? Thank you!