Data is not showing on matplotlib 1.4.2
See original GitHub issueHi,
thanks for this wonderful library; I noticed a weird behaviour when using seaborn with the latest matplotlib (1.4.2, with python 2.7 on linux64). A simple plot like this:
plot(range(10), range(10), 'bo')
which works fine using just matplotlib, appears completely blank after importing seaborn. I did some tests and it seems that the ‘dots’ marker don’t work anymore. From what I’ve seen it used to work with a previous version of matplotlib (1.3.1).
Thanks for your help, Marco
Issue Analytics
- State:
- Created 9 years ago
- Comments:24 (10 by maintainers)
Top Results From Across the Web
matplotlib 1.4.2 with Seaborn: line markers not functioning
I just installed seaborn 0.5.1 and the issue persists. Using this code to plot: import matplotlib.pyplot as plt import matplotlib import numpy as...
Read more >Resolved: Matplotlib figures not showing up or displaying
I coded up a quick Python script using matplotlib, executed the script, only to not have the figure displayed to my screen.
Read more >How-To — Matplotlib 1.4.2 documentation
The savefig() command has a keyword argument transparent which, if 'True', will make the figure and axes backgrounds transparent when saving, but will...
Read more >pyplot — Matplotlib 1.4.2 documentation
Note that if you are using a polar axes, you do not need to specify polar for the coordinate ... changes x and...
Read more >Installation — pandas 1.5.2 documentation
The simplest way to install not only pandas, but Python and the most popular ... Windows) Python distribution for data analytics and scientific...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just wanted to make a seaborn workaround (other than downgrading matplotlib) more explicit. If you do
the matplotlib markers should show up, and hopefully not look too different from the default.
Sorry I wasn’t being clear. In my case I wasn’t seeing markers for
x
and+
, etc, and I was using matplotlib 1.4.3 and seaborn 0.6.0.It was worked around with
sns.set_context(rc={'lines.markeredgewidth': 1})
. Weird that it was still necessary since I was using the right version.