Created
July 7, 2022 09:39
-
-
Save andrea-dagostino/f8e102e3c7018c70a408c3591ea23e94 to your computer and use it in GitHub Desktop.
edaeng
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
| df.target.value_counts().plot(kind="bar") | |
| plt.title("Value counts of the target variable") | |
| plt.xlabel("Wine type") | |
| plt.xticks(rotation=0) | |
| plt.ylabel("Count") | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment