prepNiceWindow: prepare a plotting environment for non-categorical data such...

prepNiceWindowR Documentation

prepare a plotting environment for non-categorical data such as scatter plots

Description

takes untransformed data and draws the x and y axis with support for log transformation and outlier trimming.

Usage

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,
  ...
)

Arguments

x

numeric vector or data frame; The input to prepCategoryWindow can be a numeric vector a data frame of numeric vectors.

by

factor or data frame of factors; used as the primary grouping factor and the factor levels will be used as group names if groupLabels is not specified. If by is a data frame and subgroup=TRUE, the second column is assumed to be a secondary grouping factor, breaking out the data into sub-categories within each major group determined by the levels of the first column.

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 TRUE. Color of the guidelines is determined by plotColors$guides.

yLim

numeric vector; manually set the limits of the plotting area (eg. yLim=c(min,max)). Used to format the y-axis.

xLim

numeric vector; manually set the limits of the plotting area (eg. xLim=c(min,max)). Used to format the x-axis. by default but will modify the x-axis if side=TRUE.

rotateLabels

logical; sets las=2 for the x-axis category labels. Will affect y-axis if side=TRUE. Note that this may not work well if long names or with subgrouped data.

theme

list; A NicePlots plotColor list from a theme.

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 logAdjustment factor is added to the values.

logScaleY

positive numeric; the base for the for log scale data transformation for the y-axis calculated after the logAdjustment factor is added to the values.

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 by to group the data within each level of the major factor.

expLabels

logical; prints the major tick labels is logScale^{x} instead of the raw value

strictLimits

logical; eliminates padding on the value axis so 0 can be flush with the x-axis. Defaults to FALSE.

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 FALSE.

preferMulti

logical; Are multiple legends preferred

maxSize

numeric; This is largest size scaling value for size scale legends. Defaults to FALSE

sizeColumn

numeric; This indicates which column should be used for the size scaling.

...

additional options mostly to be passed along to subsequent functions

Details

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.

Value

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.

See Also

axisTicks, axis, makeLogTicks, facetSpacing

Examples

todo<-1


ZachHunter/NicePlots.R documentation built on Sept. 23, 2023, 4:04 a.m.