I updated spyder and conda modules yesterday trying to get around this issue. The resolution is puzzling to me. Can anyone help explain?
I have an untitled set of code following the FacetGrid examples <http://seaborn.pydata.org/generated/seaborn.FacetGrid.html#seaborn.FacetGrid> : ``` import seaborn as sns; tips = sns.load_dataset("tips") g = sns.FacetGrid(tips, col="time", row="smoker") g = g.map(plt.hist, "total_bill") ``` as a block of code it runs. Running this pressing F9 one line at a time? Last line gives error message: ``` ValueError: Axes instance argument was not found in a figure. ``` Sounds harmless but it is a surprising result. Not sure why the issue popped up just with this particular code, and perhaps it can happen elsewhere. Any explanation appreciated. -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/spyderlib. For more options, visit https://groups.google.com/d/optout.
