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

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to