1 回答

TA貢獻1816條經(jīng)驗 獲得超6個贊
我用數(shù)學(xué)的方式做了,就像這樣:
# Scaling data down to point of obs
###########################################
scax = 3
scay = 4
ntim=np.subtract(ntim,2000)
ntim=np.multiply(ntim,scax)
ndat=np.divide(ndat,scay)
###########################################
# Plots data from obs at the location of obs
# Plot at locations by adding coordinates of obs and subtracting the mean of each axis of data set
plt.scatter(ntim-np.mean(ntim)+phi, ndat-np.mean(ndat)+the, color='blue', marker='.')
plt.scatter(phi, the, color='red', marker='.')
但是,如果有人知道一種更“科學(xué)”的方法,我會歡迎您的回復(fù)。
添加回答
舉報