Ruth Comer

Results 455 comments of Ruth Comer

Hello @quzhijing thanks for the report. Please could you provide a complete code example that we can run to reproduce the problem?

If the linewidth is positive and not 1, we see that the pattern gets scaled again in the legend. ```python plt.figure(figsize=(10, 10)) line1 = plt.quiver(0, 0, 7, 1, angles='xy', scale_units='xy',...

Next question: what should `fig.get_figure(root=False)` do if `fig` is a `Figure` instance? It has no parent to return, so maybe it should return `None` or even error. However that doesn’t...

> Yes, the root figure of a Figure is the figure itself. Right, so there is no ambiguity if `root=True`, but after the deprecation period `root=False` will be the default.

OK, I found many and varied ways to break the tests but I _think_ I have things straightened out now. My current problem is that MyPy says "Read-only property cannot...

Actually there is still more to do here (aside from placating MyPy) as currently `FigureBase.set_figure` will just set a private attribute that never gets used for anything 😬

I just rebased and somehow that broke Circle and Appveyor :confused:

The existing behaviour is clearly deliberate but I agree with @story645 about what I expected to happen. Is it worth adding a boolean parameter so you could choose between the...

Hi @Andresporcruz are you still interested in working on this?

I am uncomfortable with the idea that you get different results depending how you specify the line. In the OP’s case they know they are working with small numbers and...