Skip to content

Series API

The Bodo DataFrame Library supports Pandas Series methods and accessors that are listed below. They can be accessed through BodoSeries and follow the same behavior as their Pandas equivalents. For details on usage, we link to the corresponding Pandas documentation.

Note

If the user code encounters an unsupported Pandas API or an unsupported parameter, Bodo DataFrame library gracefully falls back to native Pandas. See overview of the Bodo DataFrame Library for more info.

Computations / descriptive stats

Datetimelike properties

Note

Input must be a Series of datetime-like data.

Datetime properties

Note

For missing datetime values (NaT), Bodo's datetime predicate accessors (e.g., .is_month_end, .is_leap_year) return <NA> to preserve nullability, whereas Pandas returns False.

Datetime methods

Warning

Locale format must be strict: The locale parameter in month_name and day_name must follow the exact system locale naming convention (e.g., "pt_BR.UTF-8" or "en_US.utf-8"). Variants like "pt_BR.utf8" may not be recognized and trigger an error.

Function application

Missing data handling

Reindexing / Selection / Label manipulation

String handling