We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transform
split_dates
Write a method to take pandas.core.series of dates as input and return pandas data frame with columns day, month, year of all observations.
pandas.core.series
pandas
day, month, year
>> Transform.split_dates([2020-10-02, 2019-10-01, 2020-11-11]) >> day, month, year 02 10 2020 01 10 2019 11 11 2020
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Write a method to take
pandas.core.series
of dates as input and returnpandas
data frame with columnsday, month, year
of all observations.The text was updated successfully, but these errors were encountered: