Skip to content

Commit 4a6db15

Browse files
committed
minimize data for smaller screen shot
1 parent e95bf0d commit 4a6db15

4 files changed

Lines changed: 3 additions & 2 deletions

File tree

quarto/catalog/fda-table_13/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ data <- adae |>
4242
SAFFL == "Y",
4343
# narrow OCMQ
4444
OCMQ01SC == "NARROW"
45-
)
45+
) %>% sample_frac(0.5) #reducing 50 percent of records for table visual
4646
```
4747

4848
## Build ARD
-64.8 KB
Loading

quarto/catalog/fda-table_14/index.qmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ adsl <- adsl |>
2727
filter(SAFFL == "Y") # safety population
2828
2929
data <- adae |>
30-
filter(SAFFL == "Y") # safety population
30+
filter(SAFFL == "Y") %>% # safety population
31+
sample_frac(0.5) #reducing 50 percent of records for table visual
3132
```
3233

3334
## Build ARD
-493 KB
Loading

0 commit comments

Comments
 (0)