How I can load the dataset?

import pandas as pd
import numpy as np
new_df=pd.read_csv('https://replit.com/@eiaravipandey/Data-Science-Sessions#Iris.csv')
new_df.head()

Hey, @eiaravipandey!
When you access this CSV, putting a URL won’t work. If the file is within the same repl as your accessing it in, then just put Iris.csv as the file, instead of the URL.

1 Like