gpt4 book ai didi

python - Jupyter,交互式 Matplotlib : Hide the toolbar of the interactive view

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

我开始使用 Matplotlib 中的交互式绘图:

%matplotlib notebook
import matplotlib.pyplot as plt
fig, axes = plt.subplots(1, figsize=(8, 3))
plt.plot([i for i in range (10)],np.random.randint(10, size=10))
plt.show()

enter image description here

谁知道有没有办法隐藏交互模式的工具栏?

最佳答案

我用一些 python 生成的 css 禁用了交互模式按钮和工具栏。在其中一个笔记本单元格中运行以下命令:

%%html
<style>
.output_wrapper button.btn.btn-default,
.output_wrapper .ui-dialog-titlebar {
display: none;
}
</style>

不幸的是,按钮上没有好的 css 选择器,所以我尝试尽可能使用特定的选择器,尽管这可能最终会禁用您可能在输出单元格中生成的其他按钮。事实上,这种方法会影响笔记本中的所有输出单元。

关于python - Jupyter,交互式 Matplotlib : Hide the toolbar of the interactive view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41928387/

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