blandr.output.report: Bland-Altman report generator

Description Usage Arguments Note Author(s) Examples

View source: R/blandr.output.report.r

Description

Generates a report for the Bland-Altman statistics using rMarkdown and Shiny.

Usage

1
blandr.output.report(method1, method2)

Arguments

method1

A list of numbers for the first method

method2

A list of numbers for the second method

Note

Use the function to generate a report. You can also take the .Rmd file to customise it and create

your own report. Or use rMarkdown to save the contents. I couldn't add this to the function as it's

not allowed in CRAN. On the otherhand a full Shiny app would take too long. So this is a stop-gap way

of creating this function. Hopefully I can improve it in the future

Author(s)

Deepankar Datta <deepankardatta@nhs.net>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# NOT RUN
# Generates two random measurements
# measurement1 <- rnorm(100)
# measurement2 <- rnorm(100)

# blandr.output.report( measurement1 , measurement2 )
#
# Use this to manually run the rmarkdown template
# However specify where the template is
# Also define your methods as method1 and method2 exactly
# For a reason I can't fathom (or how the list of parameters is constructed)
# not naming them method1 and method2 makes them invisible to the rMarkdown document
#
# rmarkdown::run( file = "blandr_report_template.Rmd" ,
#      render_args = list( runtime = "shiny" ,
#          params = list( method1 = method1 ,
#               method2 = method2 ) ) )
# END OF NOT RUN

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