# Augmented data can be extracted for every individual approach
anchor_results <- claus_2020 |>
cs_anchor(
id,
time,
bdi,
pre = 1,
post = 4,
mid_improvement = 9
)
distribution_results <- claus_2020 |>
cs_distribution(
id,
time,
bdi,
pre = 1,
post = 4,
reliability = 0.80
)
distribution_results_hlm <- claus_2020 |>
cs_distribution(
id,
time,
bdi,
rci_method = "HLM"
)
statistical_results <- claus_2020 |>
cs_statistical(
id,
time,
bdi,
pre = 1,
post = 4,
m_functional = 8,
sd_functional = 8
)
combined_results <- claus_2020 |>
cs_combined(
id,
time,
bdi,
pre = 1,
post = 4,
m_functional = 8,
sd_functional = 8,
reliability = 0.80
)
cs_get_augmented_data(anchor_results)
cs_get_augmented_data(distribution_results)
cs_get_augmented_data(distribution_results_hlm)
cs_get_augmented_data(statistical_results)
cs_get_augmented_data(combined_results)
Run the code above in your browser using DataLab