분산 플롯을 극좌표에 그리기 이 예제에서는 심볼의 크기가 방사선을 따라 증가하며 컬러는 각도에 따라 변화합니다. 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(111, projection='polar') c = ax.scatter(theta..