극 좌표계를 사용
거리, 각을 사용하여 plot


별 모양으로 생겨 Star Plot으로 불리기도 함
중심점을 기준으로 N개의 변수 값 표현
데이터의 quality를 표현하기에 좋음
주의점

ax = fig.add_subplot(111, projection='polar')
projection='polar' 파라미터를 전달polar=True 파라미터를 전달해도 똑같음
ax.set_rmax(2) & ax.set_rmin(1)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.set_rlabel_position(각도)

ax.set_thetamin(각도) & ax.set_thetamax(각도)

ax = fig.add_subplot(111, projection='polar')
c = ax.scatter(theta, r)

ax.bar(theta, r) bar chart
ax.bar(theta, r) line chart
theta = np.linspace(0, 2*np.pi, 6, endpoint=False)
끝 점을 포함시켜야 완전히 이어진 radar chart를 그릴 수 있음


※ 모든 이미지 및 코드 출처는 네이버 커넥트재단 부스트캠프 AI Tech 5기입니다. ※