我需要使用plotly
绘制大量细分。与可以连接所有点的常规散点图相反,在这里,我只需要将点两两相连即可。
我考虑了不同的选择:
会有更合适的方法吗?可能是单个散点图,其中仅每隔两个点就被连接。
我正在寻找一种有效的方法来生成Python图形,同时也要获得良好的渲染性能。
答案 0 :(得分:1)
此答案基于马克西米利安·彼得斯(Maximilian Peters)的评论中的建议以及对insert a new row after every nth row的耶祖尔方法。
关键部分还包括fig.update_traces(connectgaps=False)
情节:
完整代码:
import numpy as np
import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
# dataframe, sample
np.random.seed(123)
cols = ['a','b','c', 'd', 'e', 'f', 'g']
X = np.random.randn(50,len(cols))
df=pd.DataFrame(X, columns=cols)
df=df.cumsum()
df['id']=df.index
# dataframe with every nth row containing np.nan
df2 = (df.iloc[1::2]
.assign(id = lambda x: x['id'] + 1, c = np.nan)
.rename(lambda x: x + .5))
df1 = pd.concat([df, df2], sort=False).sort_index().reset_index(drop=True)
df1.loc[df1.isnull().any(axis=1), :] = np.nan
df1
# plotly figure
colors = px.colors.qualitative.Plotly
fig = go.Figure()
for i, col in enumerate(df1.columns[:-1]):
fig.add_traces(go.Scatter(x=df1.index, y=df1[col],
mode='lines+markers', line=dict(color=colors[i])))
fig.update_traces(connectgaps=False)
fig.show()