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

DOC: Added to 10mins guide #54010

Merged
merged 2 commits into from
Jul 6, 2023
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
10 changes: 10 additions & 0 deletions doc/source/user_guide/10min.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ Customarily, we import as follows:
import numpy as np
import pandas as pd

Basic data structures in pandas
-------------------------------

Pandas provides two types of classes for handling data:

1. :class:`Series`: a one-dimensional labeled array holding data of any type
such as integers, strings, Python objects etc.
2. :class:`DataFrame`: a two-dimensional data structure that holds data like
a two-dimension array or a table with rows and columns.

Object creation
---------------

Expand Down