Skip to content

Commit

Permalink
fix python date example
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpye committed Mar 15, 2024
1 parent e9f6829 commit 882da90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/03-data-cleaning.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ ISO 8601 dates can represent moments in time at different resolutions, as well a
> import pandas as pd
> df = pd.DataFrame({'start_date':['2021-01-30'],
> 'end_date':['2021-01-31']})
> df['eventDate'] = df['start_time']+'/'+df['end_time']
> df['eventDate'] = df['start_date']+'/'+df['end_date']
> df
> ```
> ```output
Expand Down

0 comments on commit 882da90

Please sign in to comment.