Skip to content

Commit f2fc0bd

Browse files
authored
🔁 Update README
1 parent 6aa28f3 commit f2fc0bd

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@ The easiest way to install Pandas is with pip. Type in your console:
77
pip install pandas
88
```
99

10+
## Load DataFrame from CSV 🗃
11+
Load a DateFrame from a CSV File. (Method .iloc[from:to])
12+
1013
## Print Rows from a Dateframe using an Integer Index 🗃
11-
Print 10 Rows from a Dateframe using an Integer Index from 10-20. (Method .iloc[from:to])
14+
Print 10 Rows from a Dateframe using an Integer Index from 10-20. (Method .read_csv("your_csv_file.csv"))
1215
```
1316
import pandas as pd
1417
1518
df = pd.read_csv("new_york_city.csv")
16-
17-
# Print 10 Rows from Dateframe using an Integer Index from 10-20
18-
19-
print(df.iloc[10:20])
2019
```
2120

2221
## Print the first Rows from a Dateframe 🗃

0 commit comments

Comments
 (0)