I'd like to overlay a wind rose made with contourf() with a wrscatter plot. This is my MWE: import random wind_dir = []; wind_speed = []; for i in range(30): wind_dir.extend(random.sample(range(0, 359 ...
Originally posted here because I wasn't convinced it was a bug (I'm new to matplotlib)... but I'm increasingly convinced it is a bug, so here we are. I'm plotting some NCEP temperature anomaly data ...