prepNiceWindow | R Documentation |
takes untransformed data and draws the x and y axis with support for log transformation and outlier trimming.
prepNiceWindow(
x,
by = NULL,
minorTick = FALSE,
guides = TRUE,
yLim = NULL,
xLim = NULL,
rotateLabels = FALSE,
theme = NA,
plotColors = if (is.na(theme)) {
list(bg = "open", guides = "black", lines =
"gray22", points = "darkgrey", fill = "white")
} else {
theme$plotColors
},
logScaleX = FALSE,
logScaleY = FALSE,
axisText = list(x = c(NULL, NULL), y = c(NULL, NULL)),
minorGuides = FALSE,
extendTicks = F,
subgroup = FALSE,
expLabels = TRUE,
strictLimits = F,
legend = FALSE,
logAdjustment = 1,
makePlot = TRUE,
preferMulti = TRUE,
maxSize = FALSE,
sizeColumn = FALSE,
...
)
x |
numeric vector or data frame; The input to |
by |
factor or data frame of factors; used as the primary grouping factor and the factor levels will be used as group names if |
minorTick |
positive integer; number of minor tick-marks to draw between each pair of major ticks-marks. |
guides |
logical; will draw guidelines at the major tick-marks if set to |
yLim |
numeric vector; manually set the limits of the plotting area (eg. |
xLim |
numeric vector; manually set the limits of the plotting area (eg. |
rotateLabels |
logical; sets |
theme |
list; A |
plotColors |
list; a named list of vectors of colors that set the color options for all NicePlot functions. Names left unspecified will be added and set to default values automatically. |
logScaleX |
positive numeric; the base for the for log scale data transformation for the x-axis calculated after the |
logScaleY |
positive numeric; the base for the for log scale data transformation for the y-axis calculated after the |
axisText |
list; A named list, "x" and "y" with two optional character values to be placed before and/or after the numeric axis label, respectively. |
minorGuides |
logical; draws guidelines at minor tick-marks |
extendTicks |
logical; extends minor tick-marks past the first and last major tick to the edge of the graph provided there is enough room. Works for both log-scale and regular settings. |
subgroup |
logical; use additional column in |
expLabels |
logical; prints the major tick labels is |
strictLimits |
logical; eliminates padding on the value axis so 0 can be flush with the x-axis. Defaults to |
legend |
logical/character; Draw a legend in the plot margins. If a character string is given it will overide the factor name default for the legend title. |
logAdjustment |
numeric; This number is added to the input data prior to log transformation. Default value is 1. |
makePlot |
logical; This formats the data and plotting area without drawing anything if set to |
preferMulti |
logical; Are multiple legends preferred |
maxSize |
numeric; This is largest size scaling value for size scale legends. Defaults to |
sizeColumn |
numeric; This indicates which column should be used for the size scaling. |
... |
additional options mostly to be passed along to subsequent functions |
This function does all the hard work of setting up the x and y axis for plotting as well as optionally log transforming and/or trimming the data of outliers. In particular, it adds much more robust support for plotting of log transformed data. Other features include the addition of both major and minor guidelines, support for horizontal plotting and improved label formatting options.
formats the plotting area and returns a named list with 'data' and 'labels' corresponding to the trimmed and/or transformed data and the labels for the primary factors, respectively.
axisTicks
, axis
, makeLogTicks
, facetSpacing
todo<-1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.