Skip to content

Commit 29ee832

Browse files
authored
DOC: Added to 10mins guide (#54010)
added basic intro
1 parent 291c5e3 commit 29ee832

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

doc/source/user_guide/10min.rst

+10
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ Customarily, we import as follows:
1616
import numpy as np
1717
import pandas as pd
1818
19+
Basic data structures in pandas
20+
-------------------------------
21+
22+
Pandas provides two types of classes for handling data:
23+
24+
1. :class:`Series`: a one-dimensional labeled array holding data of any type
25+
such as integers, strings, Python objects etc.
26+
2. :class:`DataFrame`: a two-dimensional data structure that holds data like
27+
a two-dimension array or a table with rows and columns.
28+
1929
Object creation
2030
---------------
2131

0 commit comments

Comments
 (0)