我正在尝试从多个列绘制折线图
ax = sns.lineplot(data=mt,
x= ['pt'],
y = [c for c in mt.columns if c not in ['pt']],
dashes=False)
我得到的回应是
ValueError: Length of list vectors must match length of `data` when both are used, but `data` has length 13 and the vector passed to `x` has length 1.
1条答案
按热度按时间kqqjbcuj1#
Seborn的偏好长格式的数据,可以通过
pd.melt()
创建。如果创建索引,则支持宽格式的 Dataframe (数据不太复杂)。下面是一个简单的例子: