Pandas Series: Difference between revisions
Jump to navigation
Jump to search
(→Index) |
|||
Line 7: | Line 7: | ||
By default, in absence of any explicit specification, a series gets a monotonic integer range, starting with 0 and with the step 1. | By default, in absence of any explicit specification, a series gets a monotonic integer [[#RangeIndex|range index]], starting with 0 and with the step 1. | ||
=Process= | =Process= |
Revision as of 17:30, 8 October 2023
External
- https://pandas.pydata.org/docs/user_guide/dsintro.html#series
- https://pandas.pydata.org/docs/reference/api/pandas.Series.html#pandas.Series
Internal
Overview
By default, in absence of any explicit specification, a series gets a monotonic integer range index, starting with 0 and with the step 1.
Process
https://www.geeksforgeeks.org/python-pandas-series/
Index
RangeIndex
RangeIndex(start=0, stop=3, step=1)
Create a Series
Accessing Elements of a Series
This is known as indexing or subset selection.
Operations on Series
Filtering
Transformation
This class of operations are referred to as transformations or conversions.