공식홈페이지 링크 : https://plotly.com/python/graph-objects/ Plotly에서 그래프를 그리는 방법은 크게 두 가지이다. 1. Graph_objects 2. Express ** 실습 데이터 ** 더보기 import pandas as pd df = pd.DataFrame({ "Fruit": ["Apples", "Oranges", "Bananas", "Apples", "Oranges", "Bananas"], "Contestant": ["Alex", "Alex", "Alex", "Jordan", "Jordan", "Jordan"], "Number Eaten": [2, 1, 3, 1, 3, 2], }) 1. Graph_objects Graph_objects는 줄여서 go라고 많이..