-
Notifications
You must be signed in to change notification settings - Fork 19
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
Missing values visualization, ref issue #271 #419
Conversation
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.
Thank you very much!
This is a high quality PR, well done!
- Please not defaults as
(default: xyz)
in the docstrings. Just for consistency. Your style is technically also fine. - Generally I avoid parameter names such as "n" or "p". They might be described in the docstring, but they are not self explanatory. Instead of "p" you could consider "max_percentage" or something. Consider renaming them, please.
- Your PR has conflicts with the poetry lockfile. The easiest way for you to fix this is to merge development in your branch, deleting the lockfile and then regenerating it with
poetry lock
Thanks!
BTW, there are also 1-2 pre-commit issues that I'd kindly ask you to fix. |
Signed-off-by: zethson <[email protected]>
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.
Please also add the new functions to the docs.
Signed-off-by: zethson <[email protected]>
Description of changes
Added four (matrix, barplot, heatmap, dendrogram) plotting functions from https://github.com/ResidentMario/missingno, updated imports and docs.
Technical details
For now I added all the arguments they use in their functions, but we can discuss what we really need and what can be removed for now.
Additional context
I am not sure how to give credits in a proper way. I just added a comment on th etop of the file, but I don't think it is the correct way to reference other repos.