Skip to content

Commit

Permalink
Merge pull request #367 from OHDSI/webpage
Browse files Browse the repository at this point in the history
Update webpage: change color theme and add github icone
  • Loading branch information
edward-burn authored Oct 22, 2024
2 parents 88a945b + 5fcf968 commit 0ce46f5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ Config/testthat/parallel: true
VignetteBuilder: knitr
Depends:
R (>= 4.1)
URL: https://ohdsi.github.io/CohortConstructor/
URL: https://ohdsi.github.io/CohortConstructor/, https://github.com/OHDSI/CohortConstructor
LazyData: true
10 changes: 10 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
url: https://ohdsi.github.io/CohortConstructor/
template:
bootstrap: 5
light-switch: true
bslib:
primary: "#0054AD"
border-radius: 0.5rem
btn-border-radius: 0.25rem
danger: "#A6081A"

navbar:
structure:
right: [search, github, lightswitch]

reference:
- subtitle: Build base cohorts
Expand Down
10 changes: 5 additions & 5 deletions vignettes/a02_cohort_table_requirements.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ Let's start by creating a cohort of acetaminophen users. Individuals will have a

```{r}
acetaminophen_codes <- getDrugIngredientCodes(cdm,
name = "acetaminophen",
nameStyle = "{concept_name}")
name = "acetaminophen",
nameStyle = "{concept_name}")
cdm$acetaminophen <- conceptCohort(cdm = cdm,
conceptSet = acetaminophen_codes,
exit = "event_end_date",
name = "acetaminophen")
conceptSet = acetaminophen_codes,
exit = "event_end_date",
name = "acetaminophen")
```

At this point we have just created our base cohort without having applied any restrictions.
Expand Down

0 comments on commit 0ce46f5

Please sign in to comment.