标签: python matplotlib ubuntu-server
虽然这个问题可能看起来很奇怪,但有时它确实很有用。例如,我必须使用plt.hist构建直方图,但我不打算绘制它,只是为了实际绘图而将条形的高度发送到前端,并且因为后端端在Ubuntu Server实例上运行,我无法通过matplotlib安装pip。一般来说可能吗?在我的特定情况下还有其他选择吗?
plt.hist
matplotlib
pip
答案 0 :(得分:2)
如果您只想要直方图值,那么只需使用numpy.histogram之类的东西直接计算它们。
numpy.histogram