극좌표 플롯 눈금 레이블 (theta)의 패딩/오프셋을 늘릴 수있는 방법이 있습니까?matplotlib : 극좌표에 패딩/오프셋 추가 틱 레이블
import matplotlib
import numpy as np
from matplotlib.pyplot import figure, show, grid
# make a square figure
fig = figure(figsize=(2, 2))
ax = fig.add_axes([0.1, 0.1, 0.8, 0.8], polar=True, axisbg='#d5de9c')
ax.set_yticklabels([])
r = np.arange(0, 3.0, 0.01)
theta = 2*np.pi*r
ax.plot(theta, r, color='#ee8d18', lw=3)
ax.set_rmax(2.0)
show()
나는 그들이 중복되지 않도록 더 멀리 북극 플롯에서 세타 눈금 레이블이 싶습니다. 모든
와우, 놀라운 설명! 정말 감사합니다! – dimka
기본 'frac'이 무엇인지 알고 있습니까? – Annan
@Annan [this] (https://github.com/matplotlib/matplotlib/blob/ff31d67a8103620221a3eeadeb985e8268a7d934/doc/users/whats_new.rst#enhancements-to-polar-plot)에서 'frac'이 사용되지 않습니다. "[...] 결과적으로 .PolarAxes에 대한 frac 인수.set_thetagrids는 더 이상 적용되지 않습니다. 틱 패딩은 .Axes.tick_params 또는 .Axis.set_tick_params에 대한'pad' 인수로 수정할 수 있습니다. " – hooy