2016-09-13 1 views
3

plotly에서는이 plot.ly로하기 matplotlib 도표를 변환 할 수Plotly in Python : matplotlib를 사용할 때 범례를 추가하는 방법은 무엇입니까?

X = [1,2,3] Y = [4,5,6] plt.plot (X, Y, 라벨 =

enter image description here

그러나 '테스트') 그림 = plt.gcf() 나는 전설을 추가 할 경우,

x=[1,2,3] 
y=[4,5,6] 
plt.plot(x,y,label='test') 
fig=plt.gcf() 
plt.legend() 

그것은 반환 오류 RuntimeError: Cannot get window extent w/o renderer

무엇이 문제인지 알고 싶습니다. plot.ly는 matplotlib로 만든 전설을 지원합니까?

답변

0

plt.plot(x,y,label='test')showlegend=True을 추가하면 트릭을 수행 할 수 있습니다.