We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 291c5e3 commit 29ee832Copy full SHA for 29ee832
doc/source/user_guide/10min.rst
@@ -16,6 +16,16 @@ Customarily, we import as follows:
16
import numpy as np
17
import pandas as pd
18
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
29
Object creation
30
---------------
31
0 commit comments