gpt4 book ai didi

python - 为 %matplotlib 返回无效的语法错误

转载 作者:太空宇宙 更新时间:2023-11-03 15:51:46 24 4
gpt4 key购买 nike

我在导入以下 Markdown 中显示的以下库时遇到了一些问题,这是通过 Twitter 进行 Python 情绪分析所必需的:

# General:
import tweepy # To consume Twitter's API
import pandas as pd # To handle data
import numpy as np # For number computing

# For plotting and visualization:
from IPython.display import display
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib

虽然对 Python3/pip 有点陌生,但作为一个 Rubyist/elephpant,我当然对自制软件并不陌生——在注释掉 %matplotlib 之后,该文件显然导入了列出的所有库,除了 %matplotlib,似乎是 the Jupyter invocation - 那么如何在标准 Python (3.6.2) 中正确加载 %matplotlib 的导入以避免以下错误?有替代方法吗?

 File "toolbox.py", line 10
%matplotlib
^
SyntaxError: invalid syntax

谢谢!

最佳答案

作为documentation explains :

Starting with IPython 5.0 and matplotlib 2.0 you can avoid the use of IPython’s specific magic and use matplotlib.pyplot.ion()/matplotlib.pyplot.ioff() which have the advantages of working outside of IPython as well.

(强调我的)

所以在你的情况下你可以使用:

plt.ion()

而不是 %matplotlib

关于python - 为 %matplotlib 返回无效的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46205948/

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