mertgencturk commited on
Commit
8a65de8
1 Parent(s): a649dab

Adding new train data

Browse files
Files changed (1) hide show
  1. train.csv +7 -3
train.csv CHANGED
@@ -53,8 +53,8 @@ train_50,FHIR path expression for birth date of the patient,Patient.birthDate,Pa
53
  train_51,FHIR path expression for whether patient is died or not,Patient.deceasedDateTime.exists() or Patient.deceasedBoolean,Patient
54
  train_52,FHIR path expression for patient's date of death,Patient.deceasedDateTime,Patient
55
  train_53,FHIR path expression for the age patient died,"utl:getPeriod(Patient.birthDate, Patient.deceasedDateTime, 'years')",Patient
56
- train_54,FHIR path expression for city patient is living,Patient.address.where(use='home').city.first(),Patient
57
- train_55,FHIR path expression for postal code of patient's home address,Patient.address.where(use='home').postalCode.first(),Patient
58
  train_56,FHIR path expression for start time for surgery phase,Procedure.performedPeriod.start,Procedure
59
  train_57,FHIR path expression for end time for surgery phase,Procedure.performedPeriod.end,Procedure
60
  train_58,FHIR path expression for whether this is a main surgery or diagnostic procedure (catheterization or EPS),Procedure.encounter.resolve().serviceType.coding.exists(code='394603008' and system='http://snomed.info/sct'),Procedure
@@ -121,4 +121,8 @@ train_119,FHIR path expression for if risk is permanent or not,Observation.compo
121
  train_120,FHIR path expression for certainty of risk,Observation.component.where(code.coding.exists(system='http://snomed.info/sct' and code='246103008')).valueCodeableConcept.coding.code.first(),Observation
122
  train_121,FHIR path expression for identifier of the encounter that this assessment is done,Observation.encounter.reference,Observation
123
  train_122,FHIR path expression for SNOMED-CT code indicating the symptom,Observation.code.coding.where(system='http://snomed.info/sct').first().code,Observation
124
- train_123,FHIR path expression for whether symptom seen,Observation.valueBoolean,Observation
 
 
 
 
 
53
  train_51,FHIR path expression for whether patient is died or not,Patient.deceasedDateTime.exists() or Patient.deceasedBoolean,Patient
54
  train_52,FHIR path expression for patient's date of death,Patient.deceasedDateTime,Patient
55
  train_53,FHIR path expression for the age patient died,"utl:getPeriod(Patient.birthDate, Patient.deceasedDateTime, 'years')",Patient
56
+ train_54,FHIR path expression for city patient is living,Patient.address.where(use='home').first().city,Patient
57
+ train_55,FHIR path expression for postal code of patient's home address,Patient.address.where(use='home').first().postalCode,Patient
58
  train_56,FHIR path expression for start time for surgery phase,Procedure.performedPeriod.start,Procedure
59
  train_57,FHIR path expression for end time for surgery phase,Procedure.performedPeriod.end,Procedure
60
  train_58,FHIR path expression for whether this is a main surgery or diagnostic procedure (catheterization or EPS),Procedure.encounter.resolve().serviceType.coding.exists(code='394603008' and system='http://snomed.info/sct'),Procedure
 
121
  train_120,FHIR path expression for certainty of risk,Observation.component.where(code.coding.exists(system='http://snomed.info/sct' and code='246103008')).valueCodeableConcept.coding.code.first(),Observation
122
  train_121,FHIR path expression for identifier of the encounter that this assessment is done,Observation.encounter.reference,Observation
123
  train_122,FHIR path expression for SNOMED-CT code indicating the symptom,Observation.code.coding.where(system='http://snomed.info/sct').first().code,Observation
124
+ train_123,FHIR path expression for whether symptom seen,Observation.valueBoolean,Observation
125
+ train_124,FHIR path expression for patient's home address,Patient.address.where(use = 'home').first(),Patient
126
+ train_125,FHIR path expression for patient's work address,Patient.address.where(use = 'work').first(),Patient
127
+ train_126,FHIR path expression for patient's marital status,Patient.maritalStatus.coding.where(system = 'http://hl7.org/fhir/ValueSet/marital-status' and code.exists()).first().code
128
+ train_127,FHIR path expression for married patient records,Patient.where(maritalStatus.coding.exists(system = 'http://hl7.org/fhir/ValueSet/marital-status' and code = 'M')),Patient