Skip to content

Commit 57c369b

Browse files
authored
Update matplotlib.md
1 parent 5a38c65 commit 57c369b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

contrib/plotting-visualization/matplotlib.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ plt.tight_layout()
4141
plt.show()
4242
```
4343

44-
![img](scatterplot.png)
4544

4645

46+
![scatterplot](https://github.com/Harshita297/learn-python/assets/122027571/aa57eb31-4377-4f75-9a97-e4fa7a54a938)
47+
4748

4849
### 3.] Bar plot
4950
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")
6061

6162
plt.show()
6263
```
63-
![img](barplot.png)
64+
![barplot](https://github.com/Harshita297/learn-python/assets/122027571/00cea3cd-a962-4bfe-b158-921389ee564c)
65+
6466

6567

6668
### 4.] Histogram
@@ -77,8 +79,11 @@ plt.ylabel("Frequency Distribution")
7779

7880
plt.show()
7981
```
82+
![histogram](https://github.com/Harshita297/learn-python/assets/122027571/32470819-bac5-4bb2-9f36-79521fa40bf3)
83+
84+
85+
8086

81-
![img](histogram.png)
8287

8388

8489

0 commit comments

Comments
 (0)