xticks in a polar plot

Hi all,

How can I suppress xticks in a polar plot ?

Nils

Nils Wagner wrote:

Hi all,

How can I suppress xticks in a polar plot ?

import matplotlib.pyplot as plt
from matplotlib.ticker import NullFormatter

ax = plt.subplot(1, 1, 1, polar=True)
ax.xaxis.set_major_formatter(NullFormatter())
plt.show()

Ryan

ยทยทยท

--
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma