You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for(i in 1:3){
x <- metalite_table1(~ SEX | TRT01A, data = r2rtf::r2rtf_adsl, id = "USUBJID")
print(x)
}
Working
x <- list()
for(i in 1:3){
x[[i]] <- metalite_table1(~ SEX | TRT01A, data = r2rtf::r2rtf_adsl, id = "USUBJID")
}
htmltools::browsable(htmltools::tagList(x))
Working
x[[1]]
x[[2]]
x[[3]]
The text was updated successfully, but these errors were encountered:
Below is a reproducible Rmarkdown example.
Here is the current output structure
title: "Untitled"
output: html_document
date: "2022-12-09"
Not Working
Working
Working
The text was updated successfully, but these errors were encountered: