Skip to content

Instantly share code, notes, and snippets.

@khurchla
Created June 7, 2022 02:20
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/c871f148f455e92f085beac60a457e57 to your computer and use it in GitHub Desktop.
Save khurchla/c871f148f455e92f085beac60a457e57 to your computer and use it in GitHub Desktop.
whylogs v1 examples
cond_reference = (wine['alcohol']<=11)
wine_reference = wine.loc[cond_reference]
cond_target = (wine['alcohol']>11)
wine_target = wine.loc[cond_target]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment