In [1]:
%matplotlib inline

In [2]:
import geopandas

In [3]:
dfx = geopandas.read_file("hive-result-collection.geojson")

In [4]:
dfx["cnt"] = dfx["cnt"].astype(int)

In [5]:
dfx.plot(column="cnt", colormap="OrRd", scheme="quantiles")


Out[5]:
<matplotlib.axes._subplots.AxesSubplot at 0x10a0c5a90>

In [ ]: