Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs? #20

Merged
merged 1 commit into from
Feb 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Modules/pandas_tutorial.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
"""
Introducing pandas using namespace pd,
such that you can call pandas class using pd instead of pandas.
"""

import pandas as pd

# Dict object, with arbitrary data.
stats = {
'Month': ['Jan', 'Feb', 'March', 'April'],
'Expenses': [2350, 3400, 2700, 2200],
'Income': [4000, 4000, 4000, 4000]
}

# stats is now a pandas data frame object.
df = pd.DataFrame(stats)
# df = df.set_index('Month')
print(df.Month)
print(df.Month)