Last active
June 7, 2022 02:33
-
-
Save khurchla/d83ba80a1bdace0b88c90c2b63f7bdef to your computer and use it in GitHub Desktop.
whylogs v1 profile visualizer examples
This file contains 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
import whylogs as why | |
result = why.log(pandas=wine_target) | |
prof_view = result.view() | |
result_ref = why.log(pandas=wine_reference) | |
prof_view_ref = result_ref.view() | |
from whylogs.viz import NotebookProfileVisualizer | |
visualization = NotebookProfileVisualizer() | |
visualization.set_profiles(target_profile_view=prof_view, reference_profile_view=prof_view_ref) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment