GUI で開くのではなく、3D 散布図を保存する小さなプログラムを実行しようとしています。問題は、それが両方を行うことです!これは私が話しているコードです:
from matplotlib import pyplot
from scipy import math
from mpl_toolkits.mplot3d import Axes3D
fig = pyplot.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(xPosition, yPosition, zPosition, c = velocity, s = mass)
ax.set_xlim3d(-plotSize, plotSize)
ax.set_ylim3d(-plotSize, plotSize)
ax.set_zlim3d(-plotSize, plotSize)
pyplot.savefig('plot.png')
GUIでプロットを開かずに、プロットの保存された画像を取得する方法を知りたいです。