Fixed .Rmd parameterization

This commit is contained in:
clairblacketer 2017-11-21 08:18:54 -05:00
parent a5b12716dd
commit 70acdf69a6
5 changed files with 70 additions and 301 deletions

View File

@ -1,36 +0,0 @@
# Copyright 2017 Observational Health Data Sciences and Informatics
#
# This file is part of DDLGeneratr
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#' Write PDF of CDM documentation
#'
#' @param mdFilesLocation The dialect of the target database. Choices are "oracle", "postgresql", "pdw", "redshift", "impala", "netezza", "bigquery", "sql server"
#'
#' @param cdmVersion The version of the OMOP Common Data Model for which the pdf document is being written. It should be written without a decimal so v5.3 becomes v5_3
#'
#' @export
writePDF <- function(mdFilesLocation, cdmVersion) {
sql <- SqlRender::loadRenderTranslateSql(sqlFilename = "OMOP_CDM_PDF.sql",
packageName = "DDLGeneratr",
dbms = "sql server",
mdFilesLocation = mdFilesLocation)
SqlRender::writeSql(sql = sql,
targetFile = "reports/OMOP_CDM_PDF_rendered.Rmd")
rmarkdown::render(input = "reports/OMOP_CDM_PDF_rendered.Rmd", output_format = "pdf_document", output_file = paste0("OMOP_CDM_",cdmVersion,".pdf"))
}

View File

@ -1,7 +1,13 @@
#This script is meant to create the OMOP Common Data Model DDLs for each dialect as well as the pdf of the documentation. #This script is meant to create the OMOP Common Data Model DDLs for each dialect as well as the pdf of the documentation.
# Step 1: Update the file inst/sql/sql_server/OMOP CDM ddl.sql with the changes for the new version # Step 1: Update the file inst/sql/sql_server/OMOP CDM ddl.sql with the changes for the new version and set the below variables
# Step 1.1: The version of the CDM you are writing. This will be used for the name of the pdf so, for example, write v5.3 as v5_3
cdmVersion <- "v5_3"
# Step 1.2: The location of the wiki markdown files. The default is "../../Documentation/CommonDataModel_Wiki_Files"
mdFilesLocation <- "../../Documentation/CommonDataModel_Wiki_Files"
# Step 2: Run the following code to create the DDLs for each dialect: # Step 2: Run the following code to create the DDLs for each dialect:
@ -30,4 +36,7 @@ writeConstraints("sql server")
# step 5: Run the following code to create the pdf documentation. It will be written to the reports folder. # step 5: Run the following code to create the pdf documentation. It will be written to the reports folder.
writePDF(mdFilesLocation = "../../Documentation/CommonDataModel_Wiki_Files", cdmVersion = "v5_3") rmarkdown::render("reports/OMOP_CDM_PDF.Rmd",
output_format = "pdf_document",
output_file = paste0("OMOP_CDM_",cdmVersion,".pdf"),
params = list(mdFilesLocation = mdFilesLocation))

View File

@ -3,7 +3,7 @@ title: "OMOP Common Data Model Specifications"
author: "Christian Reich, Patrick Ryan, Rimma Belenkaya, Karthik Natarajan and Clair Blacketer" author: "Christian Reich, Patrick Ryan, Rimma Belenkaya, Karthik Natarajan and Clair Blacketer"
date: "`r Sys.Date()`" date: "`r Sys.Date()`"
params: params:
mdFilesLocation:"../../Documentation/CommonDataModel_Wiki_Files" mdFilesLocation: "../../Documentation/CommonDataModel_Wiki_Files"
output: output:
pdf_document: pdf_document:
number_sections: yes number_sections: yes
@ -11,198 +11,202 @@ output:
linkcolor: blue linkcolor: blue
--- ---
```{r, echo=FALSE}
mdFilesLocation <- params$mdFilesLocation
```
# License # License
```{r child = paste0(params$mdFilesLocation,'/License.md')} ```{r child = paste0(mdFilesLocation,'/License.md')}
``` ```
# Background # Background
```{r child = '@mdFilesLocation/Background/Background.md'} ```{r child = paste0(mdFilesLocation,'/Background/Background.md')}
``` ```
## The Role of the Common Data Model ## The Role of the Common Data Model
```{r child = '@mdFilesLocation/Background/The-Role-of-the-Common-Data-Model.md'} ```{r child = paste0(mdFilesLocation,'/Background/The-Role-of-the-Common-Data-Model.md')}
``` ```
## Design Principles ## Design Principles
```{r child = '@mdFilesLocation/Background/Design-Principles.md'} ```{r child = paste0(mdFilesLocation,'/Background/Design-Principles.md')}
``` ```
## Data Model Conventions ## Data Model Conventions
```{r child = '@mdFilesLocation/Background/Data-Model-Conventions.md'} ```{r child = paste0(mdFilesLocation,'/Background/Data-Model-Conventions.md')}
``` ```
# Glossary of Terms # Glossary of Terms
```{r child = '@mdFilesLocation/Glossary-of-Terms.md'} ```{r child = paste0(mdFilesLocation,'/Glossary-of-Terms.md')}
``` ```
# Standardized Vocabularies # Standardized Vocabularies
```{r child = '@mdFilesLocation/StandardizedVocabularies/Standardized-Vocabularies.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/Standardized-Vocabularies.md')}
``` ```
## CONCEPT ## CONCEPT
```{r child = '@mdFilesLocation/StandardizedVocabularies/CONCEPT.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/CONCEPT.md')}
``` ```
## VOCABULARY ## VOCABULARY
```{r child = '@mdFilesLocation/StandardizedVocabularies/VOCABULARY.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/VOCABULARY.md')}
``` ```
## DOMAIN ## DOMAIN
```{r child = '@mdFilesLocation/StandardizedVocabularies/DOMAIN.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/DOMAIN.md')}
``` ```
## CONCEPT_CLASS ## CONCEPT_CLASS
```{r child = '@mdFilesLocation/StandardizedVocabularies/CONCEPT_CLASS.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/CONCEPT_CLASS.md')}
``` ```
## CONCEPT_RELATIONSHIP ## CONCEPT_RELATIONSHIP
```{r child = '@mdFilesLocation/StandardizedVocabularies/CONCEPT_RELATIONSHIP.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/CONCEPT_RELATIONSHIP.md')}
``` ```
## RELATIONSHIP ## RELATIONSHIP
```{r child = '@mdFilesLocation/StandardizedVocabularies/RELATIONSHIP.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/RELATIONSHIP.md')}
``` ```
## CONCEPT_SYNONYM ## CONCEPT_SYNONYM
```{r child = '@mdFilesLocation/StandardizedVocabularies/CONCEPT_SYNONYM.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/CONCEPT_SYNONYM.md')}
``` ```
## CONCEPT_ANCESTOR ## CONCEPT_ANCESTOR
```{r child = '@mdFilesLocation/StandardizedVocabularies/CONCEPT_ANCESTOR.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/CONCEPT_ANCESTOR.md')}
``` ```
## SOURCE_TO_CONCEPT_MAP ## SOURCE_TO_CONCEPT_MAP
```{r child = '@mdFilesLocation/StandardizedVocabularies/SOURCE_TO_CONCEPT_MAP.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/SOURCE_TO_CONCEPT_MAP.md')}
``` ```
## DRUG_STRENGTH ## DRUG_STRENGTH
```{r child = '@mdFilesLocation/StandardizedVocabularies/DRUG_STRENGTH.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/DRUG_STRENGTH.md')}
``` ```
## COHORT_DEFINITION ## COHORT_DEFINITION
```{r child = '@mdFilesLocation/StandardizedVocabularies/COHORT_DEFINITION.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/COHORT_DEFINITION.md')}
``` ```
## ATTRIBUTE_DEFINITION ## ATTRIBUTE_DEFINITION
```{r child = '@mdFilesLocation/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md')}
``` ```
# Standardized Metadata # Standardized Metadata
```{r child = '@mdFilesLocation/StandardizedMetadata/Standardized-Metadata.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedMetadata/Standardized-Metadata.md')}
``` ```
## CDM_SOURCE ## CDM_SOURCE
```{r child = '@mdFilesLocation/StandardizedMetadata/CDM_SOURCE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedMetadata/CDM_SOURCE.md')}
``` ```
# Standardized Clinical Data Tables # Standardized Clinical Data Tables
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/Standardized-clinical-Data-Tables.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/Standardized-clinical-Data-Tables.md')}
``` ```
## PERSON ## PERSON
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/PERSON.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/PERSON.md')}
``` ```
## OBSERVATION_PERIOD ## OBSERVATION_PERIOD
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/OBSERVATION_PERIOD.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/OBSERVATION_PERIOD.md')}
``` ```
## SPECIMEN ## SPECIMEN
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/SPECIMEN.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/SPECIMEN.md')}
``` ```
## DEATH ## DEATH
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/DEATH.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/DEATH.md')}
``` ```
## VISIT_OCCURRENCE ## VISIT_OCCURRENCE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/VISIT_OCCURRENCE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/VISIT_OCCURRENCE.md')}
``` ```
## PROCEDURE_OCCURRENCE ## PROCEDURE_OCCURRENCE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/PROCEDURE_OCCURRENCE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/PROCEDURE_OCCURRENCE.md')}
``` ```
## DRUG_EXPOSURE ## DRUG_EXPOSURE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/DRUG_EXPOSURE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/DRUG_EXPOSURE.md')}
``` ```
## DEVICE_EXPOSURE ## DEVICE_EXPOSURE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/DEVICE_EXPOSURE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/DEVICE_EXPOSURE.md')}
``` ```
## CONDITION_OCCURRENCE ## CONDITION_OCCURRENCE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/CONDITION_OCCURRENCE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/CONDITION_OCCURRENCE.md')}
``` ```
## MEASUREMENT ## MEASUREMENT
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/MEASUREMENT.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/MEASUREMENT.md')}
``` ```
## NOTE ## NOTE
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/NOTE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/NOTE.md')}
``` ```
## NOTE_NLP ## NOTE_NLP
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/NOTE_NLP.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/NOTE_NLP.md')}
``` ```
## OBSERVATION ## OBSERVATION
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/OBSERVATION.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/OBSERVATION.md')}
``` ```
## FACT_RELATIONSHIP ## FACT_RELATIONSHIP
```{r child = '@mdFilesLocation/StandardizedclinicalDataTables/FACT_RELATIONSHIP.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedclinicalDataTables/FACT_RELATIONSHIP.md')}
``` ```
# Standardized Health System Data Tables # Standardized Health System Data Tables
```{r child = '@mdFilesLocation/StandardizedHealthSystemDataTables/Standardized-Health-System-Data-Tables.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthSystemDataTables/Standardized-Health-System-Data-Tables.md')}
``` ```
## LOCATION ## LOCATION
```{r child = '@mdFilesLocation/StandardizedHealthSystemDataTables/LOCATION.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthSystemDataTables/LOCATION.md')}
``` ```
## CARE_SITE ## CARE_SITE
```{r child = '@mdFilesLocation/StandardizedHealthSystemDataTables/CARE_SITE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthSystemDataTables/CARE_SITE.md')}
``` ```
## PROVIDER ## PROVIDER
```{r child = '@mdFilesLocation/StandardizedHealthSystemDataTables/PROVIDER.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthSystemDataTables/PROVIDER.md')}
``` ```
# Standardized Health Economics Data Tables # Standardized Health Economics Data Tables
```{r child = '@mdFilesLocation/StandardizedHealthEconomicsDataTables/Standardized-Health-Economics-Data-Tables.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthEconomicsDataTables/Standardized-Health-Economics-Data-Tables.md')}
``` ```
## PAYER_PLAN_PERIOD ## PAYER_PLAN_PERIOD
```{r child = '@mdFilesLocation/StandardizedHealthEconomicsDataTables/PAYER_PLAN_PERIOD.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthEconomicsDataTables/PAYER_PLAN_PERIOD.md')}
``` ```
## COST ## COST
```{r child = '@mdFilesLocation/StandardizedHealthEconomicsDataTables/COST.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedHealthEconomicsDataTables/COST.md')}
``` ```
# Standardized Derived Elements # Standardized Derived Elements
```{r child = '@mdFilesLocation/StandardizedDerivedElements/Standardized-Derived-Elements.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/Standardized-Derived-Elements.md')}
``` ```
## COHORT ## COHORT
```{r child = '@mdFilesLocation/StandardizedDerivedElements/COHORT.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/COHORT.md')}
``` ```
## COHORT_ATTRIBUTE ## COHORT_ATTRIBUTE
```{r child = '@mdFilesLocation/StandardizedDerivedElements/COHORT_ATTRIBUTE.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/COHORT_ATTRIBUTE.md')}
``` ```
## DRUG_ERA ## DRUG_ERA
```{r child = '@mdFilesLocation/StandardizedDerivedElements/DRUG_ERA.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/DRUG_ERA.md')}
``` ```
## DOSE_ERA ## DOSE_ERA
```{r child = '@mdFilesLocation/StandardizedDerivedElements/DOSE_ERA.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/DOSE_ERA.md')}
``` ```
## CONDITION_ERA ## CONDITION_ERA
```{r child = '@mdFilesLocation/StandardizedDerivedElements/CONDITION_ERA.md'} ```{r child = paste0(mdFilesLocation,'/StandardizedDerivedElements/CONDITION_ERA.md')}
``` ```

View File

@ -1,207 +0,0 @@
---
title: "OMOP Common Data Model Specifications"
author: "Christian Reich, Patrick Ryan, Rimma Belenkaya, Karthik Natarajan and Clair Blacketer"
date: "`r Sys.Date()`"
output:
pdf_document:
number_sections: yes
toc: yes
linkcolor: blue
---
# License
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/License.md'}
```
# Background
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/Background/Background.md'}
```
## The Role of the Common Data Model
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/Background/The-Role-of-the-Common-Data-Model.md'}
```
## Design Principles
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/Background/Design-Principles.md'}
```
## Data Model Conventions
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/Background/Data-Model-Conventions.md'}
```
# Glossary of Terms
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/Glossary-of-Terms.md'}
```
# Standardized Vocabularies
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/Standardized-Vocabularies.md'}
```
## CONCEPT
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT.md'}
```
## VOCABULARY
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/VOCABULARY.md'}
```
## DOMAIN
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/DOMAIN.md'}
```
## CONCEPT_CLASS
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_CLASS.md'}
```
## CONCEPT_RELATIONSHIP
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_RELATIONSHIP.md'}
```
## RELATIONSHIP
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/RELATIONSHIP.md'}
```
## CONCEPT_SYNONYM
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md'}
```
## CONCEPT_ANCESTOR
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_ANCESTOR.md'}
```
## SOURCE_TO_CONCEPT_MAP
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/SOURCE_TO_CONCEPT_MAP.md'}
```
## DRUG_STRENGTH
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/DRUG_STRENGTH.md'}
```
## COHORT_DEFINITION
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md'}
```
## ATTRIBUTE_DEFINITION
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md'}
```
# Standardized Metadata
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/Standardized-Metadata.md'}
```
## CDM_SOURCE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/CDM_SOURCE.md'}
```
# Standardized Clinical Data Tables
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/Standardized-clinical-Data-Tables.md'}
```
## PERSON
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/PERSON.md'}
```
## OBSERVATION_PERIOD
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/OBSERVATION_PERIOD.md'}
```
## SPECIMEN
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/SPECIMEN.md'}
```
## DEATH
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/DEATH.md'}
```
## VISIT_OCCURRENCE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/VISIT_OCCURRENCE.md'}
```
## PROCEDURE_OCCURRENCE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/PROCEDURE_OCCURRENCE.md'}
```
## DRUG_EXPOSURE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/DRUG_EXPOSURE.md'}
```
## DEVICE_EXPOSURE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/DEVICE_EXPOSURE.md'}
```
## CONDITION_OCCURRENCE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/CONDITION_OCCURRENCE.md'}
```
## MEASUREMENT
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/MEASUREMENT.md'}
```
## NOTE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/NOTE.md'}
```
## NOTE_NLP
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/NOTE_NLP.md'}
```
## OBSERVATION
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/OBSERVATION.md'}
```
## FACT_RELATIONSHIP
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedclinicalDataTables/FACT_RELATIONSHIP.md'}
```
# Standardized Health System Data Tables
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthSystemDataTables/Standardized-Health-System-Data-Tables.md'}
```
## LOCATION
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthSystemDataTables/LOCATION.md'}
```
## CARE_SITE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthSystemDataTables/CARE_SITE.md'}
```
## PROVIDER
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthSystemDataTables/PROVIDER.md'}
```
# Standardized Health Economics Data Tables
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthEconomicsDataTables/Standardized-Health-Economics-Data-Tables.md'}
```
## PAYER_PLAN_PERIOD
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthEconomicsDataTables/PAYER_PLAN_PERIOD.md'}
```
## COST
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedHealthEconomicsDataTables/COST.md'}
```
# Standardized Derived Elements
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/Standardized-Derived-Elements.md'}
```
## COHORT
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/COHORT.md'}
```
## COHORT_ATTRIBUTE
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/COHORT_ATTRIBUTE.md'}
```
## DRUG_ERA
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/DRUG_ERA.md'}
```
## DOSE_ERA
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/DOSE_ERA.md'}
```
## CONDITION_ERA
```{r child = '../../Documentation/CommonDataModel_Wiki_Files/StandardizedDerivedElements/CONDITION_ERA.md'}
```

View File

@ -304,12 +304,11 @@ endobj
>> >>
stream stream
xÚí[]S£H}Ÿ_Ác§j`ú•]R@¬µf·RLDe<44>ÉT™*÷×oCHb«Ñ•—@ƒôǹ÷ž{û€P»Ô ǃèÓ—Cdkœc¦EÂÄàDã¶m@nkѹöø}ØÑ ÄÀ™ßÜÌgò¼¯byÖŸwtÌÁy2•íð{ÞN&éß<C3A9>ÐI¼Jç³eçŸè<C5B8>/‡˜h6c8L§¶aaKÓ˜ËÑœ«Eº\¥q6 ƒ 舟$<24>\}ía¼Z¤“ëâæm<û\þf ½¹‰eó ™&³ëø6.nÿ™u/VWiñè@L_ü·<>Ëg§¢Ÿi<¹NVÉ"›¿ xÚí[]S£H}Ÿ_Ác§j`ú•]R@¬µf·RLDe<44>ÉT™*÷×oCHb«Ñ•—@ƒôǹ÷ž{û€P»Ô ǃèÓ—Cdkœc¦EÂÄàDã¶m@nkѹöø}ØÑ ÄÀ™ßÜÌgò¼¯byÖŸwtÌÁy2•íð{ÞN&éß<C3A9>ÐI¼Jç³eçŸè<C5B8>/‡˜h6c8L§¶aaKÓ˜ËÑœ«Eº\¥q6 ƒ 舟$<24>\}ía¼Z¤“ëâæm<û\þf ½¹‰eó ™&³ëø6.nÿ™u/VWiñè@L_ü·<>Ëg§¢Ÿi<¹NVÉ"›¿
6dÅ„™œ0†ÈÔÒY¬ÑÔ5år<C3A5>RĦ¦K<CŠE 6dÅ„™œ0†ÈÔÒ1*Öhjˆ„r¹F ©aBSÓ‰%ž!Å"Š<04>U"9:•YD&à$â’èÚ°‘%E] NÒI2[&kjbLX4äÌÖïêåíµþ°ìï žt×—‹ù<0F>ƒz·Âƒø½ÙꔚÉ<>šºxÄÓFc]%YB@0ŸægÌ/ä•Uy«r3q³p3q5w3+w³µÙ}ÕMÆ€ÑÑ„O:PÛ~Îã/w¨-q
 «Drt*³ˆ.,M À3H.Ä% Ì<>%E] NÒI2[&kjbLX4äÌÖïêåíµþ°ìï žt×—‹ù<0F>ƒz·Âƒø½ÙꔚÉ<>šºxÄÓFc]%YB@0ŸægÌ/ä•Uy«r3q³p3q5w3+w³µÙ}ÕMÆ€ÑÑ„O:PÛ~Îã/w¨-q
Y»ZÝ…u¼q<C2BC>w/Y¦—3‰àpÎ&é÷i²¬wͨù: ûm±~«<>Ò*…WSéÕfAž¢<C5BE>1ƒðòŸÙOŸVôyT²Oƒ½G£î¦<1B>RcW]pµMé:'ɉGÓùr/n…e,"iÊ¢ êØ"¹-n;IÒTá^*Ç W"õÄ‹óô¿ä\Žuš<75>!<C0ò$þöc/ÒfÐÄ(ö.6. iÅÅŽ?pÜaÔ SátÛž¹¢º3"Á*Q­ˆû4}ßéŒNºAGøÄY½_ ·WäQE“T¬í÷»Þ Þ·x õK˜(¾ÛD¼4´±sÒ Ã†¥˜Õ†È^ñ¯B„ÕðÜ“nFZçÂcoXïÝâüá¾`[`^ü°”½ï”¼Ï¥l2VÍÓfÍãó<C383>?8ë74ƒm1µlUz±j`wÅ!Œü ±<C2A0>…¬uí<75>hs°©ˆ¶] ú£ «Bwùãû~wøËäƒ_*=ØR,PDý¯³¬†Ì<1D>Ã(pGÑqƒ0lÜ…Šà«&O„$øŽìç{©hÜs½<>—eÑF•hâòM<C3B2><41>c ¹,V¢À;ÔG-Îâ¬"^±m¢R?YÅç™ðX×üX!‰Ý I½þø.Y4ô$³-IŸCs„<Ùø6_p¦é,<2C>ÄSÙ*äèRÜŒ¿mxE€M„,@èc½„W^2tƒ°øf­(²‡5=”ؚW¢£ºA!Nóßj«9ºÏï)E÷‡²C³Ö怘ŠÈ—Úb8t¯ï6ƒÞ*ˆÏYÑƸ°­SÊŠ=WFB£Z甶ZâËVùÄVÚbñJƒ<õB/ûŽ3 Y»ZÝ…u¼q<C2BC>w/Y¦—3‰àpÎ&é÷i²¬wͨù: ûm±~«<>Ò*…WSéÕfAž¢<C5BE>1ƒðòŸÙOŸVôyT²Oƒ½G£î¦<1B>RcW]pµMé:'ɉGÓùr/n…e,"iÊ¢ êØ"¹-n;IÒTá^*Ç W"õÄ‹óô¿ä\Žuš<75>!<C0ò$þöc/ÒfÐÄ(ö.6. iÅÅŽ?pÜaÔ SátÛž¹¢º3"Á*Q­ˆû4}ßéŒNºAGøÄY½_ ·WäQE“T¬í÷»Þ Þ·x õK˜(¾ÛD¼4´±sÒ Ã†¥˜Õ†È^ñ¯B„ÕðÜ“nFZçÂcoXïÝâüá¾`[`^ü°”½ï”¼Ï¥l2VÍÓfÍãó<C383>?8ë74ƒm1µlUz±j`wÅ!Œü ±<C2A0>…¬uí<75>hs°©ˆ¶] ú£ «Bwùãû~wøËäƒ_*=ØR,PDý¯³¬†Ì<1D>Ã(pGÑqƒ0lÜ…Šà«&O„$øŽìç{©hÜs½<>—eÑF•hâòM<C3B2><41>c ¹,V¢À;ÔG-Îâ¬"^±m¢R?YÅç™ðX×üX!‰Ý I½þø.Y4ô$³-IŸCs„<Ùø6_p¦é,<2C>ÄSÙ*äèRÜŒ¿mxE€M„,@èc½„W^2tƒ°øf­(²‡5=”ؚW¢£ºA!Nóßj«9ºÏï)E÷‡²C³Ö怘ŠÈ—Úb8t¯ï6ƒÞ*ˆÏYÑƸ°­SÊŠ=WFB£Z甶ZâËVùÄVÚbñJƒ<õB/ûŽ3
Ä«Y<C2AB>PÖšà!Ð)TŒ<54>R—ò}•Ûîð™e¸7Uö)"[ Ä«Y<C2AB>PÖšà!Ð)TŒ<54>R—ò}•Ûîð™e¸7Uö)"[
Œ•bàþ5ôC<EFBFBD>n£~‡´}­ñ8ï&Š6°*þ?õ^ûMì[óûsÕZÔ¾Óz{¹T°ƒMÈ lÞ¸\<5C>Š©˜#K²ïv3Gg´ç¯é>î»<j+zx)Gü¨™ÑGÿzæµ1SMÄ¥”™™k<8¾¢ñÎŲæW90ªj"ͲU³h؉á6(žÁoŒ«Z†JËöÈTa…OB¬º¶co=Y6·iÀÇI<]]IÝ7¼]®u5˜ìRƒ Ãv}V Œ•bàþ5ôC<EFBFBD>n£~‡´}­ñ8ï&Š6°*þ?õ^ûMì[óûsÕZÔ¾Óz{¹T°ƒMÈ lÞ¸\<5C>Š©˜#K²ïv3Gg´ç¯é>î»<j+zx)Gü¨™ÑGÿzæµ1SMÄ¥”™™k<8¾¢ñÎŲæW90ªj"ͲU³h؉á6(žÁoŒ«Z†JËöÈTa…OB¬º¶co=Y6·iÀÇI<]]IÝ7¼]®u5˜ìRƒ Ãv}V
j°Y©Á'¾³5R‰Õæ´ý»<C3BD>ZybVb°Ó;ùÐkÖ(VbÜÛ—Á*Õîf%RKàÔë¹<C3AB><C2B9>`Èo”çÞ¤å7U|Kµˆ7gšN <4E>‰Yþ<59>Öý¿u£Oÿ¶Ž¼ï j°Y©Á'¾³5R‰Õæ´ý»<C3BD>ZybVb°Ó;ùÐkÖ(VbÜÛ—Á*Õîf%RKàÔë¹<C3AB><C2B9>`Èo”çÞ¤å7U|Kµˆ7gšN <4E>‰Yþ<59>Öý¿u£Oÿ§ù¼ê
endstream endstream
endobj endobj
198 0 obj 198 0 obj
@ -9562,8 +9561,8 @@ endobj
877 0 obj 877 0 obj
<< <<
/Author(\376\377\000C\000h\000r\000i\000s\000t\000i\000a\000n\000\040\000R\000e\000i\000c\000h\000,\000\040\000P\000a\000t\000r\000i\000c\000k\000\040\000R\000y\000a\000n\000,\000\040\000R\000i\000m\000m\000a\000\040\000B\000e\000l\000e\000n\000k\000a\000y\000a\000,\000\040\000K\000a\000r\000t\000h\000i\000k\000\040\000N\000a\000t\000a\000r\000a\000j\000a\000n\000\040\000a\000n\000d\000\040\000C\000l\000a\000i\000r\000\040\000B\000l\000a\000c\000k\000e\000t\000e\000r)/Title(\376\377\000O\000M\000O\000P\000\040\000C\000o\000m\000m\000o\000n\000\040\000D\000a\000t\000a\000\040\000M\000o\000d\000e\000l\000\040\000S\000p\000e\000c\000i\000f\000i\000c\000a\000t\000i\000o\000n\000s)/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.18)/Keywords() /Author(\376\377\000C\000h\000r\000i\000s\000t\000i\000a\000n\000\040\000R\000e\000i\000c\000h\000,\000\040\000P\000a\000t\000r\000i\000c\000k\000\040\000R\000y\000a\000n\000,\000\040\000R\000i\000m\000m\000a\000\040\000B\000e\000l\000e\000n\000k\000a\000y\000a\000,\000\040\000K\000a\000r\000t\000h\000i\000k\000\040\000N\000a\000t\000a\000r\000a\000j\000a\000n\000\040\000a\000n\000d\000\040\000C\000l\000a\000i\000r\000\040\000B\000l\000a\000c\000k\000e\000t\000e\000r)/Title(\376\377\000O\000M\000O\000P\000\040\000C\000o\000m\000m\000o\000n\000\040\000D\000a\000t\000a\000\040\000M\000o\000d\000e\000l\000\040\000S\000p\000e\000c\000i\000f\000i\000c\000a\000t\000i\000o\000n\000s)/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.18)/Keywords()
/CreationDate (D:20171117150209-05'00') /CreationDate (D:20171121081201-05'00')
/ModDate (D:20171117150209-05'00') /ModDate (D:20171121081201-05'00')
/Trapped /False /Trapped /False
/PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6354 (1.40.18)) /PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6354 (1.40.18))
>> >>
@ -10452,7 +10451,7 @@ trailer
<< /Size 878 << /Size 878
/Root 876 0 R /Root 876 0 R
/Info 877 0 R /Info 877 0 R
/ID [<568658FF67029440DF971A075757FBD0> <568658FF67029440DF971A075757FBD0>] >> /ID [<14B55B680B9D9C412E825A7F09CDF426> <14B55B680B9D9C412E825A7F09CDF426>] >>
startxref startxref
1066784 1066784
%%EOF %%EOF