Skip to content

Commit

Permalink
Merge pull request #267 from OHDSI/issue_260
Browse files Browse the repository at this point in the history
fixed some typos
  • Loading branch information
catalamarti authored Dec 13, 2024
2 parents 00ed2d6 + 0979041 commit 7b0152f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ summariseOmopSnapshot(cdm) |>


### Characterise the clinical tables
Once we have collected the snapshot information, we can start characteristing the clinical tables of the CDM. By using `summariseClinicalRecords()` and `tableClinicalRecords()`, we can easily visualise the main characteristics of specific clinical tables.
Once we have collected the snapshot information, we can start characterising the clinical tables of the CDM. By using `summariseClinicalRecords()` and `tableClinicalRecords()`, we can easily visualise the main characteristics of specific clinical tables.

```{r}
summariseClinicalRecords(cdm, c("condition_occurrence", "drug_exposure")) |>
Expand All @@ -71,7 +71,7 @@ summariseRecordCount(cdm, c("condition_occurrence", "drug_exposure")) |>
plotRecordCount(facet = "omop_table")
```
### Characterise the observation period
After visualising the main characteristics of our clinical tables, we can explore the observation period details. OmopSketch provides several functions to have an overwied of the dataset study period.
After visualising the main characteristics of our clinical tables, we can explore the observation period details. OmopSketch provides several functions to have an overview the dataset study period.

Using `summariseInObservation()` and `plotInObservation()`, we can gather information on the number of records per year.

Expand All @@ -85,7 +85,7 @@ summariseObservationPeriod(cdm$observation_period) |>
tableObservationPeriod(type = "flextable")
```

Or if visualisation is prefered, you can easily build a histogram to explore how many participants have more than one observation period.
Or if visualisation is preferred, you can easily build a histogram to explore how many participants have more than one observation period.
```{r}
summariseObservationPeriod(cdm$observation_period) |>
plotObservationPeriod()
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ summariseOmopSnapshot(cdm) |>
### Characterise the clinical tables

Once we have collected the snapshot information, we can start
characteristing the clinical tables of the CDM. By using
characterising the clinical tables of the CDM. By using
`summariseClinicalRecords()` and `tableClinicalRecords()`, we can easily
visualise the main characteristics of specific clinical tables.

Expand Down Expand Up @@ -130,7 +130,7 @@ summariseRecordCount(cdm, c("condition_occurrence", "drug_exposure")) |>
Characterise the observation period After visualising the main
characteristics of our clinical tables, we can explore the observation
period details. OmopSketch provides several functions to have an
overwied of the dataset study period.
overview of the dataset study period.

Using `summariseInObservation()` and `plotInObservation()`, we can
gather information on the number of records per year.
Expand Down

0 comments on commit 7b0152f

Please sign in to comment.