Umut Emin wrote:
> But i want to have x as vertical axis and y as horizontal.
Can't be done. But you can change which of them is the abscissa, and
which the ordinate. You'll need parametric mode for that:
set parametric
plot t, sin(t) title "independent variable is x", \
sin(t), t title "independent variable is y"
|