Skip to content

Commit

Permalink
fix: pkgdown no like : ; chore: hardcoded paths to data
Browse files Browse the repository at this point in the history
  • Loading branch information
bms63 committed May 18, 2024
1 parent 5fcf17b commit bb64e57
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ navbar:
href: articles/adam-adtte.html
- text: ADADAS - ADS-COG Analysis
href: articles/adam-adadas.html
- text: ADRG - Analysis Data Reviewer's Guide
- text: ADRG - Analysis Data Reviewers Guide
href: articles/adrg_website.html
conferences:
text: Conferences
menu:
- text: PHUSE SDE London
href: articles/conf_phuse_sde_london.html
- text: PHARMA SUG Baltimore - Paper Index: SS-344
- text: PHARMA SUG Baltimore Paper Index SS 344
href: https://www.pharmasug.org/us/2024/papers.html
feedback:
text: WG Minutes and Regulatory Feedback
Expand Down
2 changes: 1 addition & 1 deletion vignettes/tlf-demographic.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ library(rtables)


```{r, echo = FALSE}
adsl <- read_xpt(file.path(path$adam, "adsl.xpt"))
adsl <- read_xpt("../adam/adsl.xpt")
adsl_labels <- var_labels(adsl)
```

Expand Down
4 changes: 2 additions & 2 deletions vignettes/tlf-efficacy.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ library(emmeans)
```

```{r, message = FALSE, echo = FALSE}
adsl <- read_xpt(file.path(path$adam, "adsl.xpt"))
adlb <- read_xpt(file.path(path$adam, "adlbc.xpt"))
adsl <- read_xpt("../adam/adsl.xpt")
adlb <- read_xpt("../adam/adlbc.xpt")
```

```{r, message = FALSE, echo = FALSE}
Expand Down
4 changes: 2 additions & 2 deletions vignettes/tlf-kmplot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ library(visR)


```{r, echo = FALSE, message = FALSE}
adsl <- read_xpt(file.path(path$adam, "adsl.xpt"))
adtte <- read_xpt(file.path(path$adam, "adtte.xpt"))
adsl <- read_xpt("../adam/adsl.xpt")
adtte <- read_xpt("../adam/adtte.xpt")
```

```{r, echo = FALSE, message = FALSE}
Expand Down
6 changes: 3 additions & 3 deletions vignettes/tlf-primary.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ options(huxtable.add_colnames = FALSE)
```

```{r, echo = FALSE, message = FALSE}
adas <- haven::read_xpt(file.path(path$adam, "adadas.xpt"))
adsl <- haven::read_xpt(file.path(path$adam, "adsl.xpt"))
adas <- haven::read_xpt("../adam/adadas.xpt")
adsl <- haven::read_xpt("../adam/adsl.xpt")
```

```{r, echo = FALSE, message = FALSE}
Expand Down Expand Up @@ -92,7 +92,7 @@ sum_data <- t %>%
```

```{r, echo = FALSE, message = FALSE}
model_portion <- efficacy_models(adas, "CHG", 24)
model_portion <- pilot3utils::efficacy_models(adas, "CHG", 24)
```

```{r, echo = FALSE, message = FALSE}
Expand Down

0 comments on commit bb64e57

Please sign in to comment.