DOC: fix dataset usage from geoplot (#1046)

This commit is contained in:
Joris Van den Bossche
2019-07-08 11:11:03 -04:00
committed by GitHub
parent 42bc526c47
commit 7a38cb69ac
+2 -2
View File
@@ -21,10 +21,10 @@ world = geopandas.read_file(
geopandas.datasets.get_path('naturalearth_lowres')
)
boroughs = geopandas.read_file(
geopandas.datasets.get_path('nyc_boroughs')
geoplot.datasets.get_path('nyc_boroughs')
)
collisions = geopandas.read_file(
geopandas.datasets.get_path('nyc_injurious_collisions')
geoplot.datasets.get_path('nyc_injurious_collisions')
)
###############################################################################