所有参数都应具有相同的长度。参数 `y` 的长度是 6,而前面的参数 ['year'] 的长度是 100
Posted
技术标签:
【中文标题】所有参数都应具有相同的长度。参数 `y` 的长度是 6,而前面的参数 [\'year\'] 的长度是 100【英文标题】:All arguments should have the same length. The length of argument `y` is 6, whereas the length of previous arguments ['year'] is 100所有参数都应具有相同的长度。参数 `y` 的长度是 6,而前面的参数 ['year'] 的长度是 100 【发布时间】:2021-09-13 06:00:45 【问题描述】:我使用的库
import numpy as np
import pandas as pd
import seaborn as sns
import plotly.express as px
import matplotlib.pyplot as plt
数据集 https://i.stack.imgur.com/k4hIL.png
我的代码
sound_features = ['acousticness', 'danceability', 'energy', 'instrumentalness', 'liveness', 'valence']
fig = px.line(year_data, x='year', y=sound_features)
fig.show()
我的输出 https://i.stack.imgur.com/iF529.png
理想输出 https://i.stack.imgur.com/Fwsop.png
【问题讨论】:
我不熟悉这个库,但大多数人所做的只是通过压缩等长的列表来绘制笛卡尔坐标以获得每个点的位置。您需要做的是提取每个声音特征的值列,然后将其作为y
传递,而不是将标签列表作为y
传递。
【参考方案1】:
让我们试试这个方法
plot_data = [
go.Scatter(
x=year_data['year'],
y=year_data['acousticness'],
name = 'acousticness'
),
go.Scatter(
x=year_data['year'],
y=year_data['danceability'],
name = 'danceability'
),
go.Scatter(
x=year_data['year'],
y=year_data['energy'],
name = 'energy'
),
go.Scatter(
x=year_data['year'],
y=year_data['instrumentalness'],
name = 'instrumentalness'
),
go.Scatter(
x=year_data['year'],
y=year_data['liveness'],
name = 'liveness'
),
go.Scatter(
x=year_data['year'],
y=year_data['valence'],
name = 'valence'
)
]
plot_layout = go.Layout(
xaxis="type": "category",
title='Sound features'
)
fig = go.Figure(data=plot_data, layout=plot_layout)
pyoff.iplot(fig)
【讨论】:
以上是关于所有参数都应具有相同的长度。参数 `y` 的长度是 6,而前面的参数 ['year'] 的长度是 100的主要内容,如果未能解决你的问题,请参考以下文章
Pairwise T检验:complete.cases(x,y)中的错误:并非所有参数的长度都相同吗?
“表中的错误(pred = 预测,true = W[, 8]):所有参数必须具有相同的长度”
R中的KNN——所有参数必须具有相同的长度,test.X为空
“survival”包中的 survfit 函数出错:“strata(mf[ll]) 中的错误:所有参数的长度必须相同”