在Jupyter实验室中使用Matplotlib 3d绘制的错误图片

时间:2019-07-10 10:13:23

标签: python matplotlib 3d

我想在Jupyter实验室中使用matplotlib绘制3D图形,但是它不能绘制正确的图形。

jupyter实验室,使用python 3在kubernetes容器中运行。

import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

x = np.linspace(-6 * np.pi,6 * np.pi,1000)
y = np.sin(x)
z = np.cos(x)

fig = plt.figure()
ax = Axes3D(fig)
ax.plot(x, y, z)

the output is like this:

当前找不到原因,感谢您的帮助。

0 个答案:

没有答案