Histograma horizontal em gnuplot

Eu estou tentando plotar um histograma horizontal no gnuplot.

Este é o meu histograma atual vertival (tipo usual):

width=0.5
hist(x,width)=width*floor(x/width)+width/2.0 
set boxwidth width*0.9
set style fill solid 0.5
plot "a" u (hist($2,width)):(1.0) smooth freq w boxes lc 3 notitle

Agora, o que eu preciso é exatamente o mesmo resultado, mas girou 90 graus no sentido horário.

Eu tentei isso abaixo, mas os resultados não são realmente o que eu esperava.

width=0.5
hist(x,width)=width*floor(x/width)+width/2.0 
set boxwidth width*0.9
set style fill solid 0.5
plot "a" u (1.0):(hist($2,width)) smooth freq w boxes lc 3 notitle

questionAnswers(3)

yourAnswerToTheQuestion