2022-08

Dataframe

pandasを使った抽出

judge=df['country']=='England' Englandのみで抽出print(judge) TorFで返ってくるdf[judge]   TのみのデータをDfで返ってくる0False1True2False3True4Fal...
Dataframe

データフレームの抽出

列を指定して取り出す「International_football_results.csv」の列名dateを抽出する。#書き方1print(df.date)#書き方2print(df['date'])01872-11-3011873-03-...
Dataframe

.corr() データフレームで相関関係

df.corr()home_scoreaway_scoreneutralhome_score1.000000-0.129196-0.036609away_score-0.1291961.0000000.079353neutral-0.036...
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...