powered by
Visualize one-dimensional data in its every detail.
linesplot( x, labels = NULL, col = "black", cols = NULL, alpha = 25, xlim = NULL, ylim = NULL, xlab = NULL, ylab = "", las = 1, outline = TRUE, cexbox = 0.6, addboxes = FALSE, border = "black", range = 1.5, lwd = 1.5, main = "LSD.linesplot", ... )
numeric data as vector, matrix, list or data.frame.
a character vector of labels.
a R build-in color.
a character vector of R build-in colors.
alpha value: a two-digit integer between 01 and 99 for color opacity, i.e. appearance of partial or full transparency (usage omitted by default).
x limits, standard graphics parameter.
y limits, standard graphics parameter.
x label, standard graphics parameter.
y label, standard graphics parameter.
las=1: horizontal text, las=2: vertical text (x-axis labels).
logical: if TRUE (by default), outliers are plotted.
TRUE
a numerical value giving the amount by which the boxes should be magnified relative to the default.
logical: if TRUE (FALSE by default), boxplots be added to the plot.
FALSE
a R build-in color for the box and the whiskers (if addboxes = TRUE).
addboxes = TRUE
this determines how far the plot whiskers extend out from the box.
linewidth of the box and whiskers.
title(s) of the plot, standard graphics parameter.
additional parameters to be passed to points and plot.
demotour, disco, colorpalette
demotour
disco
colorpalette
# NOT RUN { l = list() for (i in 1:10){l[[i]] = rnorm(100,sqrt(i^2.5),1+i/2)} linesplot(l,alpha=25,border="darkred",addboxes = TRUE,outline=FALSE) # }
Run the code above in your browser using DataLab