I want to plot a set of 3D coordinates in a scatter plot and add information from another array of the same size (h_m), using a colorbar. I've followed the example in question Python 3d scatterplot colormap issue:
cmhot = plt.get_cmap("hot")
ax.scatter(x, y, z, marker='o', size=10, c=h_m, cmap=cmhot)
I get AttributeError: Unknown property size
s=10and notsize=10sizedoes not seem to be a valid keyword