How would I go about positioning a pie chart to a specific location by x, y coordinates on a geopandas map plot using pandas and matplotlib?
I have tried first plotting individual points and then modifying the code but the same method does not appear to be transferable over.
-- Code for plotting points (ax is the axis of the subplot that the map plot is on) --
ax.plot(x, y, color=color, markersize=size, marker="o")
The same method does not work for plotting pie charts and any other solutions I tried, such as creating sub-axes, seem to break the plot entirely.
You could do something like this. Mind that you would have to determine the positions of your pie charts yourslef
Which gives something like this