극축의 산점도 #

이 예에서는 크기가 방사형으로 증가하고 색상은 각도에 따라 증가합니다(기호가 올바르게 분산되는지 확인하기 위한 것임).

import numpy as np
import matplotlib.pyplot as plt


# Fixing random state for reproducibility
np.random.seed(19680801)

# Compute areas and colors
N = 150
r = 2 * np.random.rand(N)
theta = 2 * np.pi * np.random.rand(N)
area = 200 * r**2
colors = theta

fig = plt.figure()
ax = fig.add_subplot(projection='polar')
c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)
극 산란

오프셋 원점이 있는 극축의 산점도 #

이전 플롯과의 주요 차이점은 환형을 생성하는 원점 반경의 구성입니다. 또한 세타 영점 위치는 플롯을 회전하도록 설정됩니다.

fig = plt.figure()
ax = fig.add_subplot(projection='polar')
c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)

ax.set_rorigin(-2.5)
ax.set_theta_zero_location('W', offset=10)
극 산란

섹터에 국한된 극축의 산점도 #

이전 플롯과의 주요 차이점은 전체 원 대신 섹터를 생성하는 세타 시작 및 끝 제한의 구성입니다.

fig = plt.figure()
ax = fig.add_subplot(projection='polar')
c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)

ax.set_thetamin(45)
ax.set_thetamax(135)

plt.show()
극 산란

스크립트의 총 실행 시간: ( 0분 1.739초)

Sphinx-Gallery에서 생성한 갤러리