Learn practical skills, build real-world projects, and advance your career
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
sns.set
%matplotlib inline

Scatter Plots

Scatterplots are perhaps one of the most commonly used as well one of the most powerful visualisations you can use in the field of machine learning

df=pd.DataFrame()
df['x']=np.linspace(1,100,10)
df['y']=np.linspace(1,100,10)
df.head()