When I try this:
using Plots
bar(["a", "b", "c"], [5, 9, 7]; legend=false, orientation=:h)
I get this (not desired result as you can see):
How to properly change the bar plot orientation in Plots.jl in Julia?
Thank you!
When I try this:
using Plots
bar(["a", "b", "c"], [5, 9, 7]; legend=false, orientation=:h)
I get this (not desired result as you can see):
How to properly change the bar plot orientation in Plots.jl in Julia?
Thank you!
Copyright © 2021 Jogjafile Inc.

A few options:
orientation=:horientation=:v:The documentation says this is deprecated. The alternative now is:
More info: Plots.jl documentation page.