Pessoal estou tendo este erro no meu codigo. O que pode ser? Obrigado
ValueError: could not convert string to float: 'Intercept'
codigo:
t_valores = modelo_ajustado_2.tvalues
nome = t_valores.index.tolist()
distribuicao = stats.t(df = 5 )
distribuicao.ppf (q = 1 -0.025)
limite = [distribuicao.ppf(q = 1 - 0.025)] * len(nome)
pareto = sns.barplot(x = t_valores, y = nome)
pareto.figure.set_size_inches(15,6)
pareto.tick_params(labelsize = 20)
pareto.set_xlabel('t-valor', fontsize = 20)
# erro devido a esta linha
pareto.plot(limite, nome, 'r')