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 ...
When using contourf in a 3D plot, the projected countour surface is sometimes drawn in front of the projected points, sometimes it is correctly placed depending on the view angle. python 3.6.5 ...