Python으로 시작하는 데이터 사이언스
Hillary Green-Lerman
Lead Data Scientist, Looker



plt.scatter(df.age, df.height)
plt.xlabel('Age (in months)')
plt.ylabel('Height (in inches)')
plt.show()

plt.scatter(df.age, df.height,
color='green',
marker='s')


plt.scatter(df.x_data,
df.y_data,
alpha=0.1)

Python으로 시작하는 데이터 사이언스