set_xaxis.RdSet axis parameters of an scplot
set_xaxis(
object,
limits = NULL,
increment = NULL,
increment_from = NULL,
line = NULL,
expand = NULL,
...
)
set_yaxis(
object,
limits = NULL,
increment = NULL,
increment_from = NULL,
line = NULL,
expand = NULL,
...
)An scplot object (class scplot) returned from the scplot()
function.
Lower and upper limits of the axis (e.g., limits = c(0, 20)
sets the axis to a scale from 0 to 20). With multiple single-cases you can
use limits = c(0, NA) to scale the axis from 0 to the maximum of each
case. limits is not set by default, which makes scplot set a proper
scale based on the given data.
An integer. Increment of the x-axis. 1 :each mt value will be printed, 2 : every other value, 3 : every third values etc.
Number from which increment starts to count. Usually set to 0 if you want marks like 1,5,10,15,...
List with line parameters ("colour", "linewidth", "linetype", "lineend", "arrow"). See element_line().
Vector with two values.
Further styling arguments: color, size, face, family, hjust, vjust, lineheight, angle, linetype, lineend, arrow, fill, margin.
An object of class scplot (seescplot()) with changed xaxis and
yaxis elements.