時計回りに 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()