Skip to content

Commit a4154b6

Browse files
rsm-23im-vinicius
authored and
im-vinicius
committed
DOC: Added to 10mins guide (pandas-dev#54010)
added basic intro
1 parent 732b6be commit a4154b6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

doc/source/user_guide/10min.rst

Lines changed: 10 additions & 0 deletions
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)