sns.regplot不显示拟合的回归线

时间:2020-04-04 05:40:04

标签: python csv seaborn

我是Python的新手,有一个我想解决的问题。

我使用了以下代码:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

path='https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DA0101EN/automobileEDA.csv'
df = pd.read_csv(path)

sns.regplot(x="engine-size", y="price", data=df)
plt.ylim(0,)

当我运行代码时,没有得到拟合的回归线,仅显示了散点图。 我也收到以下错误:

TypeError:无法根据规则“安全”将数组数据从dtype('int64')强制转换为dtype('int32')

有人可以帮忙吗?

0 个答案:

没有答案