使用 GeoPandas 进行绘图时,我正在为争论而苦苦挣扎。由于某些我不明白的原因,我收到此错误
TypeError: plot_dataframe() got an unexpected keyword argument 'facecolor'
当尝试使用“facecolor”、“edgecolor”、“linewidth”和其他应该传递给matplotlib的参数和关键字时(据我的理解)。
这是我的代码示例
import geopandas as gpd
import matplotlib.pyplot as plt
my_shape=gpd.GeoDataFrame.from_file('myshape.shp')
f = plt.figure()
my_shape.plot(column='TYPE',colormap='cubehelix', alpha=0.5, categorical=True, legend=True, axes=f.gca(), edgecolor='w')
我可能做错了什么,但即使我试图重现这个例子:
我无法正确处理,但仍然出现类型错误
谢谢你的帮助
Python 2.7.10 Anaconda 2.0.1 (x86_64)、Matplotlib 1.4.3、GeoPandas 0.1.1(pysal 1.10.0、笛卡尔 1.0.1)