AttributeError: 'FacetGrid' object has no attribute 'plot'
时间: 2023-08-21 19:08:28 浏览: 105
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
可能出现这个错误的原因是因为您在 `FacetGrid` 对象上调用了 `plot` 方法,而 `FacetGrid` 对象并没有定义 `plot` 方法。在 Seaborn 中,可以使用 `FacetGrid` 对象的 `map` 方法来绘制图表。您可以将需要绘制的图表类型作为参数传递给 `map` 方法,例如 `map(plt.hist, "column_name")`。这将会绘制一个直方图,其中 `column_name` 是需要绘制直方图的列名。您可以查看 Seaborn 文档中的 `FacetGrid` 和 `map` 方法的用法,以了解更多信息。
阅读全文