Guide.ylabel
Sets the y-axis label for the plot.
Arguments
label
: Y-axis labelorientation
(optional)::horizontal
,:vertical
, or:auto
(default)
label
is not a keyword parameter, it must be supplied as the first argument of Guide.ylabel
. Setting it to nothing
will suppress the default label.
Examples
plot(cos, 0, 2π, Guide.ylabel("cos(x)"))
plot(cos, 0, 2π, Guide.ylabel("cos(x)", orientation=:horizontal))
plot(cos, 0, 2π, Guide.ylabel(nothing))