Last active
June 7, 2022 02:47
-
-
Save khurchla/98aaa590fa1be3ab00fb0b2446e2ecdc to your computer and use it in GitHub Desktop.
download whylogs profile visualizer charts or report in HTML format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# write the Difference Distribution bar chart of the citric acid feature to file | |
# in an output subdirectory | |
import os | |
os.getcwd() | |
visualization.write( | |
rendered_html=visualization.difference_distribution_chart( | |
feature_name="citric acid", profile="target" | |
), | |
html_file_name=os.getcwd() + "/output/diff_dist_citric_acid_example", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment