Pythonでグラフ作成(散布図)
5292 ワード
記録として残していきます。
そのままコピーしてやればできます。
使用したデータ(csvファイル)がうまく掲載できなかったので、写真で貼っておきます。
statistics.py
import pandas as pd
import matplotlib.pyplot as plt
from pandas.plotting import scatter_matrix
statistics.py
data = pd.read_csv("row_data.csv")
data.describe()
statistics.py
plt.scatter(data['age'], data['expenses'])
plt.ylabel('expenses')
plt.xlabel('age')
plt.show()
statistics.py
plt.scatter(data['smoker'], data['expenses'])
plt.ylabel('expenses')
plt.xlabel('smoke')
plt.show()
statistics.py
plt.scatter(data['bmi'], data['expenses'])
plt.ylabel('expenses')
plt.xlabel('bmi')
plt.show()
statistics.py
plt.figure()
scatter_matrix(data)
plt.show()
Author And Source
この問題について(Pythonでグラフ作成(散布図)), 我々は、より多くの情報をここで見つけました https://qiita.com/tsawa/items/18d8989f477f5cf4198a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .