when I type
p3 = Gadfly.plot(first(sort!(df1, [:count], rev=true), 50),
x = :word, y = :count,
Geom.bar
)
it plots a bar plot with vertical bars
When I type
p3 = Gadfly.plot(first(sort!(df1, [:count], rev=true), 50),
x = :word, y = :count,
Geom.bar(orientation=:horizontal)
)
it just returns Plot(…)
What does this mean and why won’t the plot render?