5  机器学习介绍

#| label: fig-diamondsfigureone
#| fig-cap: 测试结果
import matplotlib.pyplot as plt
from dfply import diamonds
import seaborn as sns
sns.scatterplot(x="carat", y="price", hue="cut", size="depth", data=diamonds)
plt.show()