Jana Stoilova
Jana Stoilova
Here's another example from lil128 ``` library(rtables) df % split_cols_by('a') %>% analyze('b') %>% build_table(df) ``` Result: ``` 的撒 dasda 大苏打啊实打实的 打算 asdas 的撒大阿三大苏打 dasd ------------------------------ Mean -0.01 0.05 -0.1 ```
Thanks @gmbecker for the quick reply! I think it's good if we talk about the `rbind` issue tomorrow. In a nutshell, I think it's an odd approach to take. I...
Thanks Gabe, I was thinking more about the `main_footer` string. That one can't be split into multiple rows aside from inserting line breaks, right?
Sorry yes, I see that now. Is there some internal utility function that `export_as_pdf ` uses to determine the overall width of the table across pages? If that was made...
I agree that using something like `stringi::str_wrap` is probably sufficient. But users would still need to to know how many characters are allowed to fit on a line based on...
@gmbecker just wanted to add another example for this use case: ```r anl % filter(AVISIT %in% c("BASELINE", "WEEK 3 DAY 22")) %>% droplevels() df_N % select(USUBJID, ARM) %>% unique() #...
@gmbecker , just wanted to share below some nice code developed by Liming Li for the internal EnalbleRF package to help with the design work in rtables: Example use: ```r...
@gmbecker as follow-up to our meeting , this is what I understand now the third proposal looks like using the non-rtables approach: ```r # do all data manipulation steps for...
I did some initial testing of 907f2d8c460f4216300961918d5d1da2ea3bde40 and have some issues: ```r library(rtables) library(dplyr) anl % select(USUBJID, ARM, AGE) %>% slice(1:10) anl$AGE[1:3] % add_listing_col("USUBJID") %>% add_listing_col("AGE") mat % add_listing_col("USUBJID") mat
Hi @gmbecker, I've submitted my feedback as separate issues. The only other issue I'm wondering about is whether it's necessary to have a `cols` argument in `as_listing`. This seems a...