Python/Jupyter notebook2023. 10. 7. 06:39Jupyter notebook에서 plotly 사용하는 예제
Jupyter notebook에서 plotly를 사용하는 예제 코드입니다. 2022. 10. 23 최초작성 필요한 패키지를 설치해야 합니다. pip install plotly nbformat 클래스별 샘플 개수를 막대 그래프로 그리는 예제코드입니다. import plotly.graph_objs as go import plotly yes = 100 no = 25 trace = go.Bar(x = (no, yes), y = ['No', 'Yes'], orientation = 'h', opacity = 0.8, marker=dict( color=['gold', 'lightskyblue'], line=dict(color='#000000',width=1.5))) layout = dict(title = 'Count..