Re: [Matplotlib-users] How to draw circles in logscale plots

2015-05-07 Thread Benjamin Root
A quick-n-dirty way would be to use markers via the scatter() function. Just set the facecolor to 'none', and some very large markersize value. Ben Root On Wed, Apr 8, 2015 at 12:49 PM, LowDepth wrote: > Hello, > > how can I plot circles or other shapes in plots which have logarithmic > axis? >

[Matplotlib-users] How to draw circles in logscale plots

2015-05-07 Thread LowDepth
Hello, how can I plot circles or other shapes in plots which have logarithmic axis? I have a grid of 3 plots and want to plot some kind of sketches in the lower right corner of each subplot. How should I do that? import numpy as np from matplotlib import pyplot as plt from matplotlib import gri