Function to trigger analysis based on type

supplied_br_forest(do, x, y, z)

Arguments

do

Type of analysis

x

(data.frame) Effects table

y

Change reference group

z

Confidence interval calculation

Value

data frame for specified type of analysis

Examples


forest_plot_src <- subset(effects_table, !is.na(Prop1))

forest_plot_data <- supplied_br_forest(
  "Absolute risk",
  forest_plot_src,
  "Y",
  "Calculated"
)
#> [2024-08-08 10:28:52] > trigger analysis based on type
#> [2024-08-08 10:28:52] >
#> absolute risk CI for binary outcomes is calculated and saved
#> [2024-08-08 10:28:52] > Prepare Forest plot data for absolute risk
head(forest_plot_data)
#>   treatment  factor   type          outcome   diff          se        lower
#> 1    Drug A Benefit Binary Primary Efficacy -0.410 0.017201744 -0.443714799
#> 2    Drug A    Risk Binary   Reoccurring AE -0.160 0.013527749 -0.186513901
#> 3    Drug A    Risk Binary         Rare SAE -0.013 0.004095241 -0.021026525
#> 4    Drug A    Risk Binary            Liver -0.003 0.002232263 -0.007375156
#> 5    Drug B Benefit Binary Primary Efficacy -0.140 0.014710540 -0.168832129
#> 6    Drug B    Risk Binary   Reoccurring AE -0.170 0.012549900 -0.194597353
#>          upper group
#> 1 -0.376285201     1
#> 2 -0.133486099     2
#> 3 -0.004973475     3
#> 4  0.001375156     4
#> 5 -0.111167871     5
#> 6 -0.145402647     6