gpt4 book ai didi

Python Pandas figsize 未定义

转载 作者:太空狗 更新时间:2023-10-29 22:19:06 28 4
gpt4 key购买 nike

我是 pandas 的新手,用于数据分析,我刚刚安装了具有所需依赖项(NumPy、python-dateutil、pytz、numexpr、bottleneck 和 matplotlib)的 pandas。但是当我开始尝试最基本的代码时:

import pandas as pd
pd.set_option('display.mpl_style', 'default') # Make the graphs a bit prettier
figsize(15, 5)

它提示 NameError: name 'figsize' is not defined.

我不确定我是否还需要一些其他依赖项。任何人都可以阐明这一点吗?

最佳答案

如果 %pylab inline 不起作用,请尝试使用 %pylab

所以应该是:

 %pylab
import pandas as pd
pd.set_option('display.mpl_style', 'default') # Make the graphs a bit prettier
figsize(15, 5)

该示例基于使用 Ipython 魔术命令 %pylab 在 Ipython 中运行代码,它为您提供:

In [16]: %pylab
Using matplotlib backend: TkAgg
Populating the interactive namespace from numpy and matplotlib

如果你不使用 Ipython 和 %pylab 魔法,你将不得不使用类似的东西:

from pylab import *
rcParams['figure.figsize'] = 15,5

如果你安装了 Ipython-notebook,你可以使用 pylab inline 启动它:

ipython notebook --pylab inline from the command line.

我建议首先使用 Ipython。

这是 Ipython 命令的链接 quick reference

关于Python Pandas figsize 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23762238/

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