Dash와 Plotly로 대시보드 만들기
Alex Scriven
Data Scientist
$$
$$
장점:
plotly.express로 그래프 생성$$
$$
$$
$$
$$

import plotly.express as pxline_graph = px.line(data_frame=ecom_sales, x='Year-Month', y='Total Sales ($)', title='Total Sales by Month')line_graph.show()

$$
bar_fig = px.bar( data_frame=ecom_sales, x='Total Sales ($)', y='Country', title='Total Sales by Country',orientation='h')bar_fig.show()


Dash와 Plotly로 대시보드 만들기