标签: matplotlib scatter
在下面的示例代码中,我想选择标记的大小,使它们相互接触。一般来说,这将取决于标记在x和y方向上的间距(在这种情况下,它们以1分隔)和图形大小。
import matplotlib.pyplot as plt import scipy as sp x, y = sp.mgrid[0:5, 0:5] fig = plt.figure(figsize=(1,1)) plt.scatter(x, y, s = 80) plt.show()