Skip to content

Commit

Permalink
DOC: Added to 10mins guide (#54010)
Browse files Browse the repository at this point in the history
added basic intro
  • Loading branch information
rsm-23 authored Jul 6, 2023
1 parent 291c5e3 commit 29ee832
Showing 1 changed file with 10 additions and 0 deletions.
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

0 comments on commit 29ee832

Please sign in to comment.