[PYTHON] [Mémo Jupyter Notebook] Afficher les kanji avec matplotlib

introduction

Comment afficher les kanji avec matplotlib sur Jypyter Notenook Note. J'utilisais une méthode plus compliquée, mais celle-ci est plus simple. Il a été confirmé qu'il fonctionne avec Google Colaboratory et Watson Studio.

code

Charger la bibliothèque

#Introduction des bibliothèques requises
!pip install japanize-matplotlib | tail -n 1

#Importation des bibliothèques requises
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

#Localisation japonaise
import japanize_matplotlib #Localisation japonaise matplotlib
import seaborn as sns
sns.set(font="IPAexGothic") #Paramètres de police japonais

#Fonction d'affichage de trame de données
from IPython.display import display

Chargement de l'ensemble de données Boston pour un exemple d'affichage

#Chargement de l'ensemble de données Boston

from sklearn.datasets import load_boston
boston = load_boston()
df = pd.DataFrame(boston.data, columns=boston.feature_names)
df.insert(0, 'PRICE', boston.target)

#Vérifiez le résultat
display(df.head())

Exemple de code d'affichage d'écran

#affichage graphique
plt.figure(figsize=(6,6))
plt.scatter(df.RM, df.PRICE)
plt.xlabel('nombre de pièces')
plt.ylabel('prix')
plt.title('Vue dispersée de l'ensemble de données Boston')
plt.show()

Exemple de résultat (de Google Colaboratory)

スクリーンショット 2020-01-09 8.54.25.png

Recommended Posts

[Mémo Jupyter Notebook] Afficher les kanji avec matplotlib
Mémo Jupyter Notebook
Installer matplotlib et afficher le graphique dans Jupyter Notebook
Dessin graphique avec jupyter (notebook ipython) + matplotlib + vagrant
Utilisation de Graphviz avec Jupyter Notebook
Afficher le HTML dans le notebook Jupyter
Utiliser pip avec Jupyter Notebook
Utiliser Cython avec Jupyter Notebook
Jouer avec Jupyter Notebook (IPython Notebook)
Remarque à l'aide de VSCode + Python avec le mode d'affichage inductif de type notebook Jupyter
[Mémo] Afficher Jupyter Notebook sur PC dans une police de largeur égale (Mac)
Écrivez des graphiques en temps réel avec Matplotlib sur le notebook Jupyter
Affichage des inférences et des résultats avec Tensorflow + matplotlib
Mémo Python Anaconda x Jupyter Notebook
Visualisez l'arbre de décision avec le notebook Jupyter
Faites un son avec le notebook Jupyter
[MEMO] [Construction de l'environnement de développement] Jupyter Notebook
Utiliser Markdown avec le notebook Jupyter (avec raccourci)
Ajouter plus de noyaux avec Jupyter Notebook
Analyse pratique avec Pandas + notebook Jupyter
Mémo Matplotlib
Utiliser nbextensions avec le notebook Jupyter d'Anaconda
Utilisation d'Apache Spark avec le notebook Jupyter (notebook IPython)
Jupyter Notebook n'affiche pas le graphique matplotlib
Je veux écrire un blog avec Jupyter Notebook
Utiliser Jupyter Lab et Jupyter Notebook avec EC2
Essayez SVM avec scikit-learn sur Jupyter Notebook
Afficher le graphique japonais avec VS Code + matplotlib
Comment utiliser le notebook Jupyter avec ABCI
Afficher l'histogramme / diagramme de dispersion sur Jupyter Notebook
Lier Python et JavaScript avec le notebook Jupyter
Afficher les marqueurs au-dessus de la bordure avec matplotlib
Sortie de cellule riche avec Jupyter Notebook (IPython)
Comment déboguer avec Jupyter ou iPython Notebook
Présentation de Jupyter Notebook
Construire un environnement d'analyse avec Docker (jupyter notebook + PostgreSQL)
Vérifiez la précision du NLC avec le bloc-notes Jupyter de Watson Studio
Je souhaite afficher plusieurs images avec matplotlib.
Afficher de manière interactive des courbes algébriques en Python, Jupyter
Puissant ordinateur portable Jupyter
Activer Jupyter Notebook avec conda sur un serveur distant
Essayez d'utiliser l'environnement virtuel conda avec Jupyter Notebook
Affichage simple du graphique linéaire sur Jupyter Notebook
Remplissez la largeur du bloc-notes Jupyter pour remplir le navigateur
Animation avec matplotlib
Japonais avec matplotlib
Comment afficher des images en continu avec matplotlib Memo
Mot de passe du notebook Jupyter
Animation avec matplotlib
histogramme avec matplotlib
Faire une animation avec matplotlib
Vous pouvez maintenant afficher des diapositives avec nbviewer! [Jupyter]
Construction d'environnement virtuel avec Docker + Flask (Python) + notebook Jupyter
Dessiner une structure arborescente avec D3.js dans Jupyter Notebook
Importer des cellules spécifiques à partir d'autres blocs-notes avec le bloc-notes Jupyter
Approvisionnement EC2 avec Vagrant + Jupyter (IPython Notebook) sur Docker
Afficher le graphique lors de la modification des paramètres avec PySimpleGUI + Matplotlib
Sélection multiple avec Jupyter
Bougies avec plotly + Jupyter
Démarrer Jupyter Notebook