플로틀리(Plotly) - Line Plot 그리기”

PNG

Python 시각화 라이브러리 plotly의 express를 이용해서 Line Plot을 그려보겠습니다.


더 많은 파이썬 라이브러리 관련 정보


설치

분석 환경에 맞게 아래 방법 중 하나를 선택하여 plotly를 설치합니다.

conda install plotly
pip install plotly


라이브러리 임포트

import chart_studio
chart_studio.tools.set_credentials_file(username='username', api_key='api_key')
import chart_studio.plotly as py
import plotly.express as px


Simple Line Plot

라인 그래프를 그리기 위해 plotly 내장 데이터 조회 api를 사용하여 한국의 기대수명 관련 샘플 데이터를 가져옵니다.

df = px.data.gapminder().query("country=='Korea, Rep.'")
fig = px.line(df, x="year", y="lifeExp", title='Life expectancy in Korea, Rep.')
py.iplot(fig)


Line Plot with column encoding color

여러 집단의 라인 그래프를 동시에 그리기 위해 한중일 세 국가의 기대수명 데이터를 불러옵니다.

df = px.data.gapminder().query("country in ('Korea, Rep.', 'China', 'Japan')")
fig = px.line(df, x="year", y="lifeExp", color='country')
py.iplot(fig)


더 많은 파이썬 라이브러리 관련 정보

태그:

카테고리:

업데이트:

댓글남기기