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 6aa28f3 commit f2fc0bdCopy full SHA for f2fc0bd
README.md
@@ -7,16 +7,15 @@ The easiest way to install Pandas is with pip. Type in your console:
7
pip install pandas
8
```
9
10
+## Load DataFrame from CSV 🗃
11
+Load a DateFrame from a CSV File. (Method .iloc[from:to])
12
+
13
## Print Rows from a Dateframe using an Integer Index 🗃
-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"))
15
16
import pandas as pd
17
18
df = pd.read_csv("new_york_city.csv")
-
-# Print 10 Rows from Dateframe using an Integer Index from 10-20
19
-print(df.iloc[10:20])
20
21
22
## Print the first Rows from a Dateframe 🗃
0 commit comments