如何正确使用seaborn和matplotlib

问题描述 投票:0回答:1

当我尝试在 jupyter 笔记本上使用“seaborn”时,出现错误代码文件未找到。

这是我的代码

%matplotlib inline
import matplotlib.pyplot as plt
import seaborn as sns
plt.style.use("seaborn")

错误信息

FileNotFoundError                         Traceback (most recent call last)
File ~\anaconda3\Lib\site-packages\matplotlib\style\core.py:137, in use(style)
    136 try:
--> 137     style = _rc_params_in_file(style)
    138 except OSError as err:

我尝试安装seaborn模块,但总是出现错误

python matplotlib seaborn
1个回答
0
投票

将 plt.style.use("seaborn") 替换为 sns.set_style("whitegrid") (或任何其他 Seaborn 样式,如“darkgrid”、“white”等)。这可以避免 FileNotFoundError 并正确应用 Seaborn 的样式。

© www.soinside.com 2019 - 2024. All rights reserved.