Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas datetime show only date

# Changing object type column to datetime
df['date_col'] = pd.to_datetime(df.date_col)

# Creating new column with just the date
df['new_date_col'] = df['date_col'].dt.date
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pandas #datetime #show #date
ADD COMMENT
Topic
Name
9+7 =