[FEATURE] add log_dtypes to pandas_utils
See original GitHub issueI might also want to log the dtypes
between each step in a pandas pipeline. It’s probably best to add a separate logger for both the dtype
as well as the shape.
Should the column names be seperate too? Maybe worth a discussion.
It would also be nice if these features were documented on the documentation page together with some other pandas_utils
functions.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The print step would do a very similar thing to what
log_step
would do but it would useprint
instead of using the python logging framework. The reason why matplotlib is generating warnings is because we’ve configured a logger to work in the notebook. This allows you to receive logs fromlog_step
(this is awesome for production) but you might also get the logs from other libraries (which is not awesome in a notebook).This got adressed.