Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If geometry is None, it crashes: ```python import hvplot.pandas import censusdis.data as ced from censusdis.datasets import ACS5 from censusdis.counties.washington import KING from censusdis.states import WA GROUP = "B25008" gdf_king = ced.download( ACS5, 2020, # Instead of listing the variables, we can ask for a whole group. group=GROUP, state=WA, county=KING, tract="*", with_geometry=True, # An optional flag that produces better maps in coastal areas. # More on this in the next lesson. remove_water=True, ) gdf_king ```
- Loading branch information