-1
表示除x,y之外的列我想對某些數據進行模擬,並且想針對不同類別顯示不同顏色的點。我有三列,我使用的兩列是x,y,我想使用第三列,其中有兩個類別在我的情節中反映出來。使用matplotlib,python 2.7
y = np.array(q)
x = np.array(p)
fig = plt.figure(figsize = (18,18))
plt.show()
for t in range(6000):
ax = fig.add_subplot(2,1,1)
for i in s[t:t+4]: # s is a list that contains the third column
if i == 'Match':
ax.plot(x[i], y[i], 'bs')
else:
ax.plot(x[i],y[i],'ro')
一個你能請張貼代碼爲您最好的嘗試?謝謝 – lrnzcig
@Irnzcig:請參閱上面的代碼,我認爲groupby可以幫助,但我不知道如何在這裏使用它。 – nezz