About Lesson
Scatter plots are used to show relationships between two numerical variables.
# Scatter plot of Sales vs Profit
df.plot(x='Sales', y='Profit', kind='scatter', title='Sales vs Profit', color='green')
plt.xlabel('Sales')
plt.ylabel('Profit')
plt.show()