Nothing
nms <- c("summary", "raw", "design") .REPORT_DIR list.files(.REPORT_DIR) RDFILE <- paste0(RDFILE3, ".RData") load(file.path(.REPORT_DIR, RDFILE)) names(out) <- nms tab5_lst <- out
sum2 <- tab5_lst$summary raw2 <- tab5_lst$raw des2 <- tab5_lst$design sum2 |> dim() raw2 |> dim() ## Right order of columns sum2 <- sum2 |> select(dat, nvar, method, prob, marg, time) sum2 |> print(n=40) ## Wide format to table in paper sum2_wide <- sum2 |> arrange(prob, nvar, dat, method) sum2_wide sum2_wide <- sum2_wide |> pivot_wider(id_cols = c(marg, nvar, prob), names_from = c(method, dat), values_from = time) sum2_wide
sum2_wide |> kable(full.width=T) %>% kable_styling(bootstrap_options="hover")
sum2 |> kable(full.width=T) %>% kable_styling(bootstrap_options="hover")
raw2 |> kable(full.width=T) %>% kable_styling(bootstrap_options="hover")
sum2 |> ggplot(aes(x=nvar, y=log10(time))) + geom_point() + geom_line(aes(group=method, color=method)) + facet_grid(prob ~ dat)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.