我正在编写一个在matplotlib中绘制3D散点图的接口,我想从python脚本访问数据。对于2D散点图,我知道过程如下:
import numpy as np
from matplotlib import pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
h = ax.scatter(x,y,c=c,s=15,vmin=0,vmax=1,cmap='hot')
data = h.get_offsets()
通过上面的代码,我知道数据将是一个用我的(x,y)数据填充的(N,2) numpy数组。当我尝试对3