gpt4 book ai didi

python - Pandas set_option - 每行有多个选项

转载 作者:太空宇宙 更新时间:2023-11-04 07:42:44 25 4
gpt4 key购买 nike

这可能是个愚蠢的问题,但是......

在导入 pandas 后设置选项时,我一次设置一个选项,例如:

pd.set_option('max_rows',1000)
pd.set_option('notebook_repr_html',False)

有没有办法尝试将它们结合起来。我尝试传递一个选项列表,但没有成功。

如果只有一种方法,那也没什么大不了的。

最佳答案

没有一种 native 方法可以在一行上执行多个选项。我想你可以这样做:

列表理解

[pd.set_option(option, setting) for option, setting in [('max_rows', 1000), ('notebook_repr_html', False)]]

但我不建议这样做!

手写(每行一个命令)

我认为写这个手写体更容易阅读,更简洁,也更符合 Python 风格:

pd.set_option('max_rows',1000)
pd.set_option('notebook_repr_html',False)

关于python - Pandas set_option - 每行有多个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15900670/

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