From 7a38cb69ac0424efbf9f81e1eea50daad0b3583e Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 8 Jul 2019 11:11:03 -0400 Subject: [PATCH] DOC: fix dataset usage from geoplot (#1046) --- examples/plotting_with_geoplot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/plotting_with_geoplot.py b/examples/plotting_with_geoplot.py index 0b5fad0..55885e1 100644 --- a/examples/plotting_with_geoplot.py +++ b/examples/plotting_with_geoplot.py @@ -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') ) ###############################################################################