Skip to content
New issue

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

dfs cutoff_time should take a datetime string #2014

Open
dvreed77 opened this issue Apr 12, 2022 · 0 comments
Open

dfs cutoff_time should take a datetime string #2014

dvreed77 opened this issue Apr 12, 2022 · 0 comments
Labels
good first issue new feature

Comments

@dvreed77
Copy link
Contributor

@dvreed77 dvreed77 commented Apr 12, 2022

  • As a user, I wish featuretools dfs would take a string as cutoff_time aswell as a datetime object

Code Example

fm, features = ft.dfs(entityset=es,
                      target_dataframe_name='customers',
                      cutoff_time="2014-1-1 05:00",
                      instance_ids=[1],
                      cutoff_time_in_index=True)

as well as

fm, features = ft.dfs(entityset=es,
                      target_dataframe_name='customers',
                      cutoff_time=dateutil.parser.parse("2014-1-1 05:00"),
                      instance_ids=[1],
                      cutoff_time_in_index=True)
@dvreed77 dvreed77 added the new feature label Apr 12, 2022
@gsheni gsheni added the good first issue label Apr 12, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue new feature
Projects
None yet
Development

No branches or pull requests

2 participants