We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3546a83 commit ca982d2Copy full SHA for ca982d2
README.md
@@ -8,15 +8,15 @@ pip install pandas
8
```
9
10
## Load DataFrame from a CSV File 📂
11
-Load a DateFrame from a CSV File. (Method .iloc[from:to])
+Load a DateFrame from a CSV File. (Method .read_csv("your_csv_file.csv"))
12
13
import pandas as pd
14
15
df = pd.read_csv("new_york_city.csv")
16
17
18
## 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"))
+Print 10 Rows from a Dateframe using an Integer Index from 10-20. (Method .iloc[from:to])
20
21
22
0 commit comments