Skip to main content

Series Methods

Methods that can be performed on a Series.

Aggregation


Returns the number of non-NA/null observations in the Series.

Returns the maximum of the values in the Series.

Returns the minimum of the values in the Series.

Returns the sum of the values in the Series.

Returns the mean of the values in the Series.

Returns the median of the values in the Series.

Returns the unique values in the Series.

String


Splits each string element in the Series from the beginning, at the specified seperator/delimiter string.

ser.str.strip(to_remove=None)

Removes the specified character from each string in the Series from left and right sides.

Converts strings in the Series to lowercase.

Converts strings in the Series to uppercase.

Converts every first character in Series' elements to be capitalized.

Converts strings in the Series to be titlecased.

ser.str.replace(old, new)

Substitutes all old strings with the new string for every element of the Series.

Counts the number of characters in the Series for each element.

ser.str.contains(substring)

Tests if a substring is contained within each element of the Series.