Created
July 5, 2022 16:20
-
-
Save andrea-dagostino/b70c8a8c8eba7b855369953a726f8fdd to your computer and use it in GitHub Desktop.
edaita
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("Conteggio valori della variabile target") | |
| plt.xlabel("Tipo di vino") | |
| plt.xticks(rotation=0) | |
| plt.ylabel("Conteggio") | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment