Ans 4:
df = pd.read_csv( “File Path” , header = None )
Ans 5:
We would give ‘nrows’ argument to read.csv() if you only want to read top 10 rows of data. for example:
df = pd.read_csv( “File Path” , header = None , nrows = 10)
Ans 4:
df = pd.read_csv( “File Path” , header = None )
Ans 5:
We would give ‘nrows’ argument to read.csv() if you only want to read top 10 rows of data. for example:
df = pd.read_csv( “File Path” , header = None , nrows = 10)