Assignment 3
Assignment 3
# importing libraries
import seaborn as sb
# load data
df = sb.load_dataset('iris')
# use regplot
sb.regplot(x = "sepal_length",
y = "petal_length",
ci = None,
data = df)
output:
how to make scatter plots with regression lines using Seaborn in Python.
Steps Required