Introduction to Data Science in 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)
Introduction to Data Science in Python