Created
June 7, 2022 02:20
-
-
Save khurchla/c871f148f455e92f085beac60a457e57 to your computer and use it in GitHub Desktop.
whylogs v1 examples
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
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