You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you go to the course discussion there is a thread on this. Essentially later version of matplot lib changed the default colors. Here were the instructions that fixed the issue.
I suspect that your machine has version 2.0 or greater of MatPlotLib installed. Version 2.0 changed a number of things including the default color schemes.
Please add the following to your notebook by the Imports statements
import matplotlib
print(matplotlib.version)
if this outputs 2.0 or later the colors will be different.
To fix the colors add these lines
to reset most of matplotlib to classic, pre-2.0, colors and styles
I follow your tutorial for Pima-Prediction, and use "./data/pima-data.csv".
My result:
Your result (origin exercise file):
What makes it different?
The text was updated successfully, but these errors were encountered: