Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

convert pandas datetime to day, weekday, month

#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,
Comment

PREVIOUS NEXT
Code Example
Python :: dice rolling simulator python 
Python :: bar plot matplotlib 
Python :: move the mouse in games python 
Python :: python if string is null or whitespace 
Python :: array length godot 
Python :: python get index of first element of list that matches condition 
Python :: How can I install XGBoost package in python on Windows 
Python :: how to uninstall python idle on ubuntu 
Python :: sort df by column 
Python :: Column names reading csv file python 
Python :: strip comma from string python 
Python :: python read line into list 
Python :: python requests port 
Python :: count number of zeros in a number python 
Python :: call a Python range() using range(start, stop, step) 
Python :: python get name of function 
Python :: django rest framework 
Python :: discord py get channel id by name 
Python :: input array of string in python 
Python :: python binary search algorithm 
Python :: python program for printing fibonacci numbers 
Python :: finding the index of an item in a pandas df 
Python :: natural log and log base 10 in python 
Python :: python permutation 
Python :: how to pair up two lists in python 
Python :: python xml replace attribute value 
Python :: strptime 
Python :: read json file python 
Python :: add custom field to serializer 
Python :: 2 variables with statement python 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =