Skip to content

Commit 25735e2

Browse files
committed
⬆️ Init
1 parent 344db9d commit 25735e2

File tree

2 files changed

+300008
-0
lines changed

2 files changed

+300008
-0
lines changed

Examples/Load_DataFrame_from_CSV.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import pandas as pd
2+
3+
df = pd.read_csv("new_york_city.csv")
4+
5+
# Prints the first 10 Rows, sorted by Start Time
6+
7+
print(df.iloc[0:10].sort_values(["Start Time"]))

0 commit comments

Comments
 (0)