From 57c369bd0ec3d02e283224f903e760abb368b51f Mon Sep 17 00:00:00 2001 From: Harshita Jain <122027571+Harshita297@users.noreply.github.com> Date: Fri, 31 May 2024 13:00:40 +0530 Subject: [PATCH] Update matplotlib.md --- contrib/plotting-visualization/matplotlib.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/contrib/plotting-visualization/matplotlib.md b/contrib/plotting-visualization/matplotlib.md index 720dff8..02f17f5 100644 --- a/contrib/plotting-visualization/matplotlib.md +++ b/contrib/plotting-visualization/matplotlib.md @@ -41,9 +41,10 @@ plt.tight_layout() plt.show() ``` -![img](scatterplot.png) +![scatterplot](https://github.com/Harshita297/learn-python/assets/122027571/aa57eb31-4377-4f75-9a97-e4fa7a54a938) + ### 3.] Bar plot Bar plot is a type of plot that plots the frequency distrubution of the categorical variables. Each entity of the categoric variable is represented as a bar. The size of the bar represents its numeric value. @@ -60,7 +61,8 @@ plt.ylabel("Y values") plt.show() ``` -![img](barplot.png) +![barplot](https://github.com/Harshita297/learn-python/assets/122027571/00cea3cd-a962-4bfe-b158-921389ee564c) + ### 4.] Histogram @@ -77,8 +79,11 @@ plt.ylabel("Frequency Distribution") plt.show() ``` - -![img](histogram.png) +![histogram](https://github.com/Harshita297/learn-python/assets/122027571/32470819-bac5-4bb2-9f36-79521fa40bf3) + + + +