[Matplotlib-users] Blurry Scatter Plot

2015-08-02 Thread albad17
For some reason when I plot a scatter plot like this: plt.scatter(diamonds['carat'], diamonds['price'], color = 'black', alpha = 0.05) plt.xlabel('Carat') plt.ylabel('Price') I get a blurry scatter plot as shown in the image

Re: [Matplotlib-users] Blurry Scatter Plot

2015-08-02 Thread Thomas Caswell
Remove the `alpha=0.05` kwargs which is setting the alpha to be almost transparent. Tom On Sun, Aug 2, 2015 at 6:53 PM albad17 albertdorf...@gmail.com wrote: For some reason when I plot a scatter plot like this: plt.scatter(diamonds['carat'], diamonds['price'], color = 'black', alpha =