Skip to content

Instantly share code, notes, and snippets.

@khurchla
Last active June 7, 2022 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khurchla/d83ba80a1bdace0b88c90c2b63f7bdef to your computer and use it in GitHub Desktop.
Save khurchla/d83ba80a1bdace0b88c90c2b63f7bdef to your computer and use it in GitHub Desktop.
whylogs v1 profile visualizer examples
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