How to Create a Choropleth Map in Python (without GeoPandas, GiS, or any GeoJSON knowledge)

<p>I don&rsquo;t know if it&rsquo;s because GeoPandas is poorly maintained or that most people can&rsquo;t be bothered and simply use GiS software for this type of problem, but I couldn&rsquo;t for the life of me create some simple informative maps in Python. After quite a bit of searching and many hours of trial and error, here&rsquo;s a quick and easy way to create a Choropleth map with pretty much only Python knowledge.</p> <p>Quickly, here are the imports I&rsquo;m running and the versions of each:</p> <p><img alt="" src="https://miro.medium.com/v2/resize:fit:246/1*dPufF5LYy4ChwWfPO1fs8Q.png" style="height:330px; width:246px" /></p> <p>To create a useful Choropleth map, you&rsquo;re likely going to need two datasets: a map (GeoJson, Shapefile, KML, etc.) and data you want to put on the map (Pandas DataFrame, series, etc.). Your map will, at some point, need to be converted into a GeoJSON file (which will later be turned into a JSON). Don&rsquo;t worry if you don&rsquo;t know anything about JSONs; they look and act like dictionaries.</p> <p><a href="https://maitiusexton.medium.com/how-to-create-a-choropleth-map-in-python-without-geopandas-gis-or-any-geojson-knowledge-6f2fa8128d39"><strong>Read More</strong></a></p>