modin.pandas.Series.dt.day_name¶
- Series.dt.day_name[source]¶
Return the day names with specified locale.
- Parameters:
locale (str, optional) – Locale determining the language in which to return the day name. Default is English locale (‘en_US.utf8’). Use the command locale -a on your terminal on Unix systems to find your locale language code.
- Returns:
Series or Index of day names.
- Return type:
Examples
Using the locale parameter you can set a different locale language, for example: idx.day_name(locale=’pt_BR.utf8’) will return day names in Brazilian Portuguese language.