blandr.display.and.draw: (DEPRECATED) Bland-Altman display and draw for R

Description Usage Author(s) Examples

View source: R/blandr.display.and.draw.r

Description

(DEPRECATED) Stub function: calls both the display and plots functions (in that order). Uses the same parameters as the plot and display functions to allow easy all-in-one use. This function may be deprecated in future, as you really can use the functions easily separately.

Usage

1
2
3
4
5
6
blandr.display.and.draw(method1, method2, plotter = "ggplot",
  method1name = "Method 1", method2name = "Method 2",
  plotTitle = "Bland-Altman plot for comparison of 2 methods",
  sig.level = 0.95, annotate = FALSE, ciDisplay = TRUE,
  ciShading = FALSE, normalLow = FALSE, normalHigh = FALSE,
  lowest_y_axis = FALSE, highest_y_axis = FALSE, point_size = 0.8)

Author(s)

Deepankar Datta <deepankardatta@nhs.net>

Examples

1
2
3
4
5
6
7
8
9
# Generates two random measurements
measurement1 <- rnorm(100)
measurement2 <- rnorm(100)

# Generates a plot, with no optional arguments
blandr.display.and.draw( measurement1 , measurement2 )

# Generates a plot, with title
blandr.display.and.draw( measurement1 , measurement2 , plotTitle = 'Bland-Altman example plot' )

deepankardatta/blandr documentation built on March 28, 2020, 7:55 a.m.