to import dataset directly from url
short code story//////////////////////////////////////////////////////////////////////
url="https://raw.githubusercontent.com/mwaskom/seaborn-data/master/flights.csv"
df= pd.read_csv(url)
df
url could be any url from gitub any wher in internet
Comments
Post a Comment