Python으로 그래프 작성(산포도)

4626 단어 statisticsPython3
기록으로 남겨 갑니다.

그대로 복사하면 할 수 있습니다.

사용한 데이터(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()

좋은 웹페이지 즐겨찾기