matplotlib

matplotlib

seaborn pairplotの使い方

importmatplotlibimportmatplotlib.pyplotaspltimportpandasaspdimportseabornassns%matplotlibinlinetitanic_df=pd.read_csv('t...
matplotlib

seabornのhue 色分けする countplot

importmatplotlibimportmatplotlib.pyplotaspltimportpandasaspdimportseabornassns%matplotlibinlinetitanic_df=pd.read_csv('t...
matplotlib

seabornの使い方

seabornはmatplotlibを補助する可視化モジュールだ。seabornのメリットは、使用頻度の高いグラフを素早く、短いコードで書けることだ。細かい調整は難しく、matplotlibを用いる方が無難だが、大まかに情報を把握したい場合...
matplotlib

plotly インタラクティブな図

pipinstallplotlyまずはplotlyをインストールするimportplotlyimportplotly.graph_objectsasgoplotly.offline.init_notebook_mode(connected=...
matplotlib

棒グラフ 円グラフ 箱ひげ図

棒グラフ#coding:utf-8importmatplotlibimportmatplotlib.pyplotaspltimportpandasaspd%matplotlibinlineimportjapanize_matplotlib#...
matplotlib

plt.figure とplt.subplot

#coding:utf-8importmatplotlibimportmatplotlib.pyplotaspltimportpandasaspd%matplotlibinlineimportjapanize_matplotlib#matp...
matplotlib

散布図 ヒストグラム カスタマイズ

散布図#coding:utf-8importmatplotlibimportmatplotlib.pyplotaspltimportpandasaspd%matplotlibinlineimportjapanize_matplotlib#m...
matplotlib

折れ線グラフとカスタマイズ

日本語化モジュールをインストール→まずはこれを使わないと進まない。pippipinstalljapanize-matplotlibcondacondainstall-cuehara1414japanize-matplotlibimportm...
matplotlib

matplotlibの紹介

importmatplotlib.pyplotasplt%matplotlibinlinematplotlib.pyplotというモジュールが「plt」というライブラリ名で呼び出されている。pyplotは慣例としてpltとimportする。...