gpt4 book ai didi

python - Idle 和 Pandas-Python

转载 作者:太空宇宙 更新时间:2023-11-03 13:40:11 26 4
gpt4 key购买 nike

我正在尝试启动我从 IPython 笔记本中找到的这段代码(我还添加了一些代码,如 :interactive(True)...)我的问题是当我在空闲状态下使用“运行模块”时,它会启动“data.plot”然后它加载并且没有任何反应。 data.plot 似乎不起作用。

谢谢,如果你有任何想法。

注意:如果没有“interactive(True)”,则会出现一个带有“运行时错误”的框

import pandas as pd
import matplotlib.pyplot as plt
from matplotlib import interactive
interactive(True)

# read data into a DataFrame
data = pd.read_csv('http://www-bcf.usc.edu/~gareth/ISL/Advertising.csv', index_col=0)
print(data.head())

# print the shape of the DataFrame
print data.shape

# visualize the relationship between the features and the response using scatterplots
fig, axs = plt.subplots(1, 3, sharey=True)
data.plot(kind='scatter', x='TV', y='Sales', ax=axs[0], figsize=(16, 8))
data.plot(kind='scatter', x='Radio', y='Sales', ax=axs[1])
data.plot(kind='scatter', x='Newspaper', y='Sales', ax=axs[2])

最佳答案

尝试display(data.plot(PARAMS))。要导入它,请尝试 from IPython.core.display import display

这在一些 iPython Notebooks 中对我有用。

关于python - Idle 和 Pandas-Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32854148/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com