├── README.md ├── bivariate-choropleth.ipynb ├── bivariate_choropleth.png ├── border.json ├── data.json └── raw.json /README.md: -------------------------------------------------------------------------------- 1 | # bivariate-choropleth 2 | How to make bi-variate choropleth with GeoPandas and Matplotlib 3 | 4 | 5 | ## Background 6 | Guess what? Yes, it is a short, *semi-automatic* tutorial on how to make a bivariate choropleth map with **GeoPandas** and **Matplotlib**! 7 | 8 | My motivation is simple: I've tried to make such a map in R and QGIS but somehow found it difficult. [This notebook](https://github.com/mikhailsirenko/bivariate-choropleth/blob/main/bivariate-choropleth.ipynb) work in a *plug-in* mode: load your data and execute all cells below. Of course, there are "things" to tweak: colormap, map tiles, etcetera, but I'll point to these lines. Let's go! 9 | 10 | ## Result 11 |

12 | 13 |

14 | -------------------------------------------------------------------------------- /bivariate_choropleth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikhailsirenko/bivariate-choropleth/e187764769c71eec7595c7041c053dd34f724fd1/bivariate_choropleth.png --------------------------------------------------------------------------------