我正在寻找一个顺时针方向旋转 90 度的图。这种图的一个类似例子是“hist(x,orientation='horizontal')”。有什么方法可以实现类似的方向。
#Make horizontal plots.
import random
import matplotlib.pyplot as plt
x = random.sample(range(1000), 100)
x
plt.plot(x) #orientation='horizontal'
plt.show()
我正在寻找一个顺时针方向旋转 90 度的图。这种图的一个类似例子是“hist(x,orientation='horizontal')”。有什么方法可以实现类似的方向。
#Make horizontal plots.
import random
import matplotlib.pyplot as plt
x = random.sample(range(1000), 100)
x
plt.plot(x) #orientation='horizontal'
plt.show()