1. 主页
  2. 文档
  3. GeoPandas 0.12.2中文文档
  4. User Guide
  5. Making Maps and plots
  6. Pandas Plots

Pandas Plots

Plotting methods also allow for different plot styles from pandas along with the default geo plot. These methods can be accessed using the kind keyword argument in plot(), and include:

绘图方法还允许使用来自 pandas 的不同绘图样式以及默认的地理绘图。可以使用 plot() 中的 kind 关键字参数访问这些方法,包括:

  • geo for mapping
  • line for line plots
  • bar or barh for bar plots
  • hist for histogram
  • box for boxplot
  • kde or density for density plots
  • area for area plots
  • scatter for scatter plots
  • hexbin for hexagonal bin plots
  • pie for pie plots
In [43]: gdf = world.head(10)

In [44]: gdf.plot(kind='scatter', x="pop_est", y="gdp_md_est")
Out[44]: <AxesSubplot: xlabel='pop_est', ylabel='gdp_md_est'>

You can also create these other plots using the GeoDataFrame.plot.<kind> accessor methods instead of providing the kind keyword argument.

您还可以使用 GeoDataFrame.plot.<kind> 访问器方法创建这些其他图,而不需提供 kind 关键字参数。

In [45]: gdf.plot.bar()
Out[45]: <AxesSubplot: >

For more information check out the pandas documentation.

更多信息请查看pandas文档。

标签 , ,
这篇文章对您有用吗?

我们要如何帮助您?

欢迎留下您的宝贵建议

Please enter your comment!
Please enter your name here