Skip to content

Commit 0767743

Browse files
committed
#82 style files
1 parent f5f1be4 commit 0767743

File tree

20 files changed

+62
-58
lines changed

20 files changed

+62
-58
lines changed

adam/adae.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,3 @@ adae %>%
159159
xportr_label(metacore) %>% # Assigns variable label from metacore specifications
160160
xportr_df_label(metacore) %>% # Assigns dataset label from metacore specifications
161161
xportr_write(file.path(dir, "adae.xpt"), metadata = metacore, domain = "ADAE")
162-

adam/adpc.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,4 +463,3 @@ adpc_xpt <- adpc %>%
463463
xportr_format(metacore) %>% # Assigns variable format from metacore specifications
464464
xportr_df_label(metacore) %>% # Assigns dataset label from metacore specifications
465465
xportr_write(file.path(dir, "adpc.xpt")) # Write xpt v5 transport file
466-

adam/adppk.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,4 +433,3 @@ adppk_xpt <- adppk %>%
433433
xportr_format(metacore) %>% # Assigns variable format from metacore specifications
434434
xportr_df_label(metacore) %>% # Assigns dataset label from metacore specifications
435435
xportr_write(file.path(dir, "adppk.xpt")) # Write xpt v5 transport file
436-

adam/adrs.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,3 @@ adrs_xpt <- adrs_checked %>%
168168
xportr_format(metacore) %>% # Assign variable formats from metadata
169169
xportr_df_label(metacore) %>% # Assign dataset labels from metadata
170170
xportr_write(file.path(dir, "adrs.xpt")) # Write the XPT file
171-

adam/adsl.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,4 +327,3 @@ adsl %>%
327327
xportr_label(metacore) %>% # Assigns variable label from metacore specifications
328328
xportr_df_label(metacore) %>% # Assigns dataset label from metacore specifications
329329
xportr_write(file.path(dir, "adsl.xpt"), metadata = metacore, domain = "ADSL")
330-

adam/adtte.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,3 @@ adtte_final <- adtte_adsl_checked %>%
145145
# Write dataset to XPT file (optional)
146146
dir <- tempdir()
147147
xportr_write(adtte_final, file.path(dir, "adtte.xpt"))
148-

adam/advs.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,4 +337,3 @@ advs_final <- advs_prefinal %>%
337337
xportr_format(metacore, domain = "ADVS") %>%
338338
xportr_df_label(metacore, domain = "ADVS") %>%
339339
xportr_write(file.path(dir, "advs.xpt"), metadata = metacore, domain = "ADVS")
340-

functions/print_df.R

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ library(reactablefmtr)
33

44
print_df <- function(dataset, n = 10) {
55
out <- dataset
6-
6+
77
reactable(
88
head(out, n),
99
compact = TRUE,
@@ -20,7 +20,8 @@ print_df <- function(dataset, n = 10) {
2020
highlightColor = "#dfe6f2",
2121
cellPadding = "8px"
2222
)
23-
) %>%
23+
) %>%
2424
add_title("Sample of Data",
25-
font_size = 16)
25+
font_size = 16
26+
)
2627
}

logging/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
title: "Logs"
3-
---
3+
---

logging/logging.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,10 @@ and more details see the
633633

634634
To utilize this feature, begin by creating a list of approved functions:
635635
```{r}
636-
approved_pkgs <- list(base = "mean",
637-
dplyr = "All")
636+
approved_pkgs <- list(
637+
base = "mean",
638+
dplyr = "All"
639+
)
638640
```
639641

640642
Next, build the `approved_pkgs` list and save its contents to a file:

0 commit comments

Comments
 (0)