“Wochentag Pandas” Code-Antworten

Konvertieren Sie Pandas DateTime to Day, Wochentag, Monat

#Convert datetime column/series to hour of the day. NB: Column must be in datetime format.
df['hour'] = df['column_name'].dt.hour
#Convert datetime column/series to day of the week
df['day'] = df['column_name'].dt.weekday
#Convert datetime column/series to month
df['month'] = df['column_name'].dt.month
#Convert datetime column/series to year
df['year'] = df['column_name'].dt.year
#NB: Weekday/Month will be in int. Eg. for months, January=1, February=2...etc,
Kwams

Wochentag Pandas

df['date_time'].dt.dayofweek #gives only the index(0-monday,6-sunday)
df['date_time'].dt.weekday_name #gives the day
Lazy long python

Ähnliche Antworten wie “Wochentag Pandas”

Fragen ähnlich wie “Wochentag Pandas”

Weitere verwandte Antworten zu “Wochentag Pandas” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen