DEV Community

Discussion on: A Simple Machine Learning Project in Python

Collapse
 
imjoseangel profile image
Jose Angel Munoz

Hey! Nice one!

Just a single comment: When displaying the plot, it is important to add the following:

import matplotlib.pyplot as plt
# Show the plot
plt.show() 

Warm Regards!

Collapse
 
bhoobalan profile image
bhoobalan • Edited

Good!!!
Another workaround is we can use "%matplotlib inline" while import like below so that we no need to use plt.show() explicitly everytime.

import matplotlib.pyplot as plt
%matplotlib inline

Useful when you use Jupiter Notebook.

Collapse
 
educationecosystem profile image
Dr. Michael Garbade

Yes, thanks for pointing that out.