Skip to content

Commit ca982d2

Browse files
authored
🔁 Update README
1 parent 3546a83 commit ca982d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ pip install pandas
88
```
99

1010
## Load DataFrame from a CSV File 📂
11-
Load a DateFrame from a CSV File. (Method .iloc[from:to])
11+
Load a DateFrame from a CSV File. (Method .read_csv("your_csv_file.csv"))
1212
```
1313
import pandas as pd
1414
1515
df = pd.read_csv("new_york_city.csv")
1616
```
1717

1818
## Print Rows from a Dateframe using an Integer Index 🗃
19-
Print 10 Rows from a Dateframe using an Integer Index from 10-20. (Method .read_csv("your_csv_file.csv"))
19+
Print 10 Rows from a Dateframe using an Integer Index from 10-20. (Method .iloc[from:to])
2020
```
2121
import pandas as pd
2222

0 commit comments

Comments
 (0)