EADST

Draw Figures with Plotly in Python

Draw Figures with Plotly in Python

import plotly.express as px
import pandas as pd

data_frame = pd.read_excel('sample.xlsx', sheet_name='details')
df = data_frame[:1000]
fig = px.scatter_matrix(df, dimensions=["sum_paynum", "avg_paymoney","weekofyear"], color="sku_id")
fig.show()

Plotly Express in Python

相关标签
About Me
XD
Goals determine what you are going to be.
Category
标签云
站点统计

本站现有博文242篇,共被浏览288082

本站已经建立1773天!

热门文章
文章归档
回到顶部