Skip to content

Jsurendra9/Barh-Chart-using-data-from-web-site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Barh-Chart-using-data-from-web-site

import matplotlib.pyplot as plt import pandas as pd

bank = pd.read_html("https://en.wikipedia.org/wiki/List_of_banks_in_India")

bank = bank[0][["Anchor Bank","Branches"]].sort_values("Anchor Bank", ascending=True)

plt.barh(bank["Anchor Bank"],bank["Branches"]) plt.xlabel("Count of Branches") plt.ylabel("Bank names") plt.title("Banks VS Count of Branches") plt.show()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published