mollview 命令不返回绘图图像

mollview command not returning plot image

我是 healpy 的新手,我正在尝试在 iPython27 中绘制以下内容:

import numpy as np
import healpy as hp

NSIDE = 32
m=np.arange(hp.nside2npix(NSIDE))
hp.mollview(m, title="Mollview image RING")

这不是我预期的 return 图片。可能是什么问题?

您需要设置 IPython 以显示 matplotlib 图。

如果您正在使用 IPython 控制台

%matplotlib

如果IPython笔记本

%matplotlib inline