stat_SLR_equation: Add Regression Line Equation and R-Square to a ggplot.

Description Usage Arguments Computed variables References Examples

View source: R/stat_SLR_equation.R

Description

Add regression line equation and R^2 to a ggplot. Regression model is fitted using the function lm.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
stat_SLR_equation(
  mapping = NULL,
  data = NULL,
  formula = y ~ x,
  label.x.npc = "left",
  label.y.npc = "top",
  label.x = NULL,
  label.y = NULL,
  geom = "text",
  position = "identity",
  na.rm = FALSE,
  show.legend = NA,
  cf.digits = 2,
  rr.digits = 2,
  inherit.aes = TRUE,
  ...
)

Arguments

mapping

Set of aesthetic mappings created by aes() or aes_(). If specified and inherit.aes = TRUE (the default), it is combined with the default mapping at the top level of the plot. You must supply mapping if there is no plot mapping.

data

The data to be displayed in this layer. There are three options:

If NULL, the default, the data is inherited from the plot data as specified in the call to ggplot().

A data.frame, or other object, will override the plot data. All objects will be fortified to produce a data frame. See fortify() for which variables will be created.

A function will be called with a single argument, the plot data. The return value must be a data.frame, and will be used as the layer data. A function can be created from a formula (e.g. ~ head(.x, 10)).

formula

a formula object

label.x.npc, label.y.npc

can be numeric or character vector of the same length as the number of groups and/or panels. If too short they will be recycled.

  • If numeric, value should be between 0 and 1. Coordinates to be used for positioning the label, expressed in "normalized parent coordinates".

  • If character, allowed values include: i) one of c('right', 'left', 'center', 'centre', 'middle') for x-axis; ii) and one of c('bottom', 'top', 'center', 'centre', 'middle') for y-axis.

If too short they will be recycled.

label.x, label.y

numeric Coordinates (in data units) to be used for absolute positioning of the label. If too short they will be recycled.

geom

The geometric object to use display the data

position

Position adjustment, either as a string, or the result of a call to a position adjustment function.

na.rm

If FALSE (the default), removes missing values with a warning. If TRUE silently removes missing values.

show.legend

logical. Should this layer be included in the legends? NA, the default, includes if any aesthetics are mapped. FALSE never includes, and TRUE always includes. It can also be a named logical vector to finely select the aesthetics to display.

cf.digits

Number of decimals for the regression line coefficients. Can be a vector as long as the coefficients.

rr.digits

Number of decimals for R^2 value.

inherit.aes

If FALSE, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g. borders().

...

other arguments to pass to geom_text or geom_label.

Computed variables

x

x position for left edge

y

y position near upper edge

eq.label

equation for the fitted polynomial as a character string to be parsed

rr.label

R^2 of the fitted model as a character string to be parsed

hjust

Set to zero to override the default of the "text" geom.

References

This function is a modification of stat_regline_equation in ggpubr, but includes cf.digits and rr.digits.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
p <- ggplot2::ggplot(data=iris,mapping=ggplot2::aes(x=Sepal.Length,y=Petal.Length)) +
  ggplot2::geom_point() +
  ggplot2::geom_smooth(method="lm") +
  theme_NCStats()
p + stat_SLR_equation()
p + 
  stat_SLR_equation(ggplot2::aes(label=..eq.label..),label.x.npc=0,label.y.npc=1.0) +
  stat_SLR_equation(ggplot2::aes(label=..rr.label..),label.x.npc=0,label.y.npc=0.9)

p2 <- p + ggplot2::facet_wrap(~Species)
p2 + stat_SLR_equation()
p2 + stat_SLR_equation(cf.digits=2)
p2 + stat_SLR_equation(cf.digits=c(3,4))
p2 + 
  stat_SLR_equation(ggplot2::aes(label=..eq.label..),
                    label.x.npc=0,label.y.npc=1.0,cf.digits=c(3,4)) +
  stat_SLR_equation(ggplot2::aes(label=..rr.label..),
                    label.x.npc=0,label.y.npc=0.9,rr.digits=3)

droglenc/NCStats documentation built on June 5, 2021, 2:06 p.m.