4
我正在尋找一個以順時針方向旋轉90度的圖。這種情節的類似例子是「hist(x,orientation ='horizontal')」。有什麼辦法可以實現類似的方向。python中的水平圖
#Make horizontal plots.
import random
import matplotlib.pyplot as plt
x = random.sample(range(1000), 100)
x
plt.plot(x) #orientation='horizontal'
plt.show()
謝謝爲我工作 – Curious