Learn R Programming

biodosetools (version 3.7.2)

summary_curve_tables: Summary and curve tables

Description

Summary and curve tables

Usage

summary_curve_tables(num_labs, list_lab_names, all_rds)

Value

list(sorted_table_ilc, sorted_table_curve)

Arguments

num_labs

number of laboratories participating.

list_lab_names

list with the laboratory names.

all_rds

list with the rds files.

Examples

Run this code
#fit_results_X is the output from the Estimation module

fit_results_A1 <- system.file("extdata", "A1_Estimation_results.rds", package = "biodosetools") %>%
  readRDS()

fit_results_A2 <- system.file("extdata", "A2_Estimation_results.rds", package = "biodosetools") %>%
  readRDS()



summary_curve_tables(num_labs = 2,
                     list_lab_names = c("A", "B"),
                     all_rds = list(fit_results_A1, fit_results_A2)
                     )

Run the code above in your browser using DataLab