Supposely I have dataframes as below:
Year Month Day
2003 1 8
2003 2 7
How to combine the Year, Month, and Day in the newly defined column in the dataframe as such the dataframe would be:
Year Month Day Date
2003 1 8 2003-1-8
2003 2 7 2003-2-7
Any idea on this?
I am using pandas python dataframe
Thanks!