Skip to content

Commit

Permalink
DOC: fix typo (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Apr 22, 2024
1 parent 7198024 commit 4e808e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/source/geopandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@
"source": [
"counties = gpd.read_file(get_path(\"geoda.natregimes\"))\n",
"\n",
"deomgraphy = xr.Dataset(\n",
"demography = xr.Dataset(\n",
" data_vars=dict(\n",
" population=([\"county\", \"year\"], counties[[\"PO60\", \"PO70\", \"PO80\", \"PO90\"]]),\n",
" unemployment=([\"county\", \"year\"], counties[[\"UE60\", \"UE70\", \"UE80\", \"UE90\"]]),\n",
Expand All @@ -1843,7 +1843,7 @@
" ),\n",
" coords=dict(county=counties.geometry, year=[1960, 1970, 1980, 1990]),\n",
").xvec.set_geom_indexes(\"county\", crs=counties.crs)\n",
"deomgraphy"
"demography"
]
},
{
Expand Down Expand Up @@ -2028,7 +2028,7 @@
}
],
"source": [
"deomgraphy.xvec.to_geodataframe()"
"demography.xvec.to_geodataframe()"
]
},
{
Expand Down Expand Up @@ -2371,7 +2371,7 @@
}
],
"source": [
"deomgraphy.xvec.to_geodataframe(long=False)"
"demography.xvec.to_geodataframe(long=False)"
]
},
{
Expand Down

0 comments on commit 4e808e8

Please sign in to comment.