jupyter中如何看plt.plot的局部细节

在Jupyter中使用matplotlib时,如果你想要放大图表的某一部分,可以使用matplotlib的交互式方式查看局部细节。

python 复制代码
%matplotlib notebook  # 在Jupyter中使用交互式后端
import matplotlib.pyplot as plt
import numpy as np
 
# 生成数据
x = np.linspace(0, 10, 1000)
y = np.sin(x)
 
# 绘制图形
plt.plot(x, y)

上述代码中,%matplotlib notebook魔法命令使得Jupyter使用的是兼容notebook的交互式matplotlib后端。显示图表后,你可以使用鼠标滚轮进行缩放。

相关推荐
a computer's friend4 天前
服务器jupyter lab 设置:密码+远程访问
python·jupyter
小陈phd4 天前
基于Pytorch实现图像分类——基于jupyter
pytorch·jupyter·分类
BlackPercy5 天前
【jupyter】文件路径的更改
ide·python·jupyter
赵孝正6 天前
如何在jupyter notebook切换python环境
ide·python·jupyter
vvw&7 天前
如何在 Ubuntu 上安装 Jupyter Notebook
linux·人工智能·python·opencv·ubuntu·机器学习·jupyter
Chatopera 研发团队8 天前
机器学习 - 为 Jupyter Notebook 安装新的 Kernel
人工智能·机器学习·jupyter
孤客网络科技工作室8 天前
在 Jupyter Notebook 中使用 Matplotlib 进行交互式可视化的教程
ide·jupyter·matplotlib
好难怎么办10 天前
动手学深度学习-使用d2l导致jupyter内核挂掉
人工智能·深度学习·jupyter
陈晨辰熟稳重10 天前
20241112-Pycharm使用托管的Anaconda的Jupyter Notebook
python·jupyter·pycharm
Byyyi耀10 天前
Jupyter notebook如何加载torch环境
ide·python·jupyter