-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add DataFrame class #88
Conversation
This pull request has been linked to Shortcut Story #22383: Explore streaming DataFrames. |
@@ -121,6 +121,9 @@ def get_description_type(path=PKG_DESCRIBE): | |||
"download_url": "{}/tarball/v{}".format(REPOSITORY, get_version()), | |||
"packages": find_packages(where=PROJECT, exclude=EXCLUDES), | |||
"install_requires": list(get_requires()), | |||
"extras_require": { | |||
"ml": ["pandas==2.1.2"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is that we can make this an extra package e.g. pip install pyensign[ml]
, I'm not sure what else we need to do to make that happen but this ensures that pandas is not in the regular dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is extremely cool @pdeziel! Once this is merged, maybe you could ask @pdamodaran to start experimenting a bit with these by installing from the develop branch?
tests/pyensign/ml/test_dataframe.py
Outdated
print(df) | ||
print(expected) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove these prints?
This PR adds an experimental package
ml
with an initial DataFrame implementation.TODOs and questions
CHECKLIST
pytest
?