mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 20:51:27 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
9 lines
733 B
Markdown
9 lines
733 B
Markdown
# Scatterplot
|
|
|
|
A scatter plot displays two numeric variables as points on an x-y axis to reveal their relationship. It is used during EDA to detect correlations, clusters, and outliers. A trend line or regression line can be added to show the direction and strength of the linear relationship between the variables.
|
|
|
|
Visit the following resources to learn more:
|
|
|
|
- [@article@matplotlib.pyplot.scatter](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.scatter.html)
|
|
- [@article@How to Make a Scatter Plot in Python With plt.scatter()](https://realpython.com/visualizing-python-plt-scatter/)
|
|
- [@video@Seaborn scatter plot | How to make and style a scatterplot in Python seaborn](https://www.youtube.com/watch?v=4yz4cMXCkuw) |