전체적인 개요는?
chart-studio-plotly 링크 접속
https://chart-studio.plotly.com/feed/#/
import chart_studio.tools
username = '' # 자신의 username (plotly account를 만들어야 함)
api_key = '' # 자신의 api key (settings > regenerate key)
chart_studio.tools.set_credentials_file(username=username, api_key=api_key)
chart_studio.plotly.plot(fig, filename = '파일이름', auto_open=True) # fig: 작성한 차트를 저장한 변수
## 위 코드를 실행하면 새로운 window로 해당 차트의 링크가 열리고, notebook에도 link를 아래에 return해줌
- 저는 fig와 fig_2 모두 업로드 해야했기에, py.plot을 두개 작성했습니다.
- 🖍 밑에 나오게 되는 url을 잘 기록해주세요!
😎_그렇다면~~_😎