I am currently working with Matplotlib. I am plotting some data successfully, but I want to change x and y category labels axis position because they are overlapping with x and y labels. Any suggestions? enter image description here
Thanks in advance!
fig = pl.figure(figsize=(10, 8))
_, cf = wrl.vis.plot_ppi(data, fig=fig, cg=True, vmin=vmin, vmax=vmax)
pl.xlabel("Easting from radar (km)", labelpad = 30)
pl.ylabel("Northing from radar (km)", labelpad = 30)
pl.title(title)
cb = pl.colorbar(cf, shrink=1)
cb.set_label("dBZ")
pl.xlim(-km, km) # limits of the plot in KM
pl.ylim(-km, km) # limits of the plot in KM
pl.grid(color="grey")