Extract named element(s) from list(s) into long-format data frame
Source:R/utils.R
dfListExtractKey.Rd
(Deprecated, use dfTrials2Long and dfName2Value!) The function uses a name (key) to extract an element from a list in a data.frame such as obtained with dbGetFieldsIntoDf. This helps to simplify working with nested lists and with complex structures.
Arguments
- df
A data frame (or tibble)
- list.key
A list of pairs of list names and key names, where the list name corresponds to the name of a column in
df
that holds a list and the name of the key identifies the element to be extracted. See example.
Value
A data frame (or tibble, if tibble
is loaded)
in long format with columns
name (identifying the full path in the data frame,
"<list>.<key>"), _id (of the trial record), value
(of name per _id), item (number of value of name
per _id).
Examples
dbc <- nodbi::src_sqlite(
dbname = system.file("extdata", "demo.sqlite", package = "ctrdata"),
collection = "my_trials")
df <- dbGetFieldsIntoDf(
fields = c(
"endPoints.endPoint",
"subjectDisposition.postAssignmentPeriods"),
con = dbc)
#> endPoints.endPoint...
#>
#> .
#>
#> subjectDisposition.postAssignmentPeriods...
#>
#> .
suppressWarnings(
dfListExtractKey(
df = df,
list.key = list(
c("endPoints.endPoint",
"^title"),
c("subjectDisposition.postAssignmentPeriods",
"arms.arm.type.value"))
))
#> name _id
#> 1 endPoints.endPoint.title 2012-003632-23-AT
#> 2 endPoints.endPoint.title 2012-003632-23-AT
#> 3 endPoints.endPoint.title 2012-003632-23-AT
#> 4 endPoints.endPoint.title 2012-003632-23-AT
#> 5 endPoints.endPoint.title 2012-003632-23-AT
#> 6 endPoints.endPoint.title 2012-003632-23-AT
#> 7 endPoints.endPoint.title 2012-003632-23-AT
#> 8 endPoints.endPoint.title 2012-003632-23-AT
#> 9 endPoints.endPoint.title 2012-003632-23-CZ
#> 10 endPoints.endPoint.title 2012-003632-23-CZ
#> 11 endPoints.endPoint.title 2012-003632-23-CZ
#> 12 endPoints.endPoint.title 2012-003632-23-CZ
#> 13 endPoints.endPoint.title 2012-003632-23-CZ
#> 14 endPoints.endPoint.title 2012-003632-23-CZ
#> 15 endPoints.endPoint.title 2012-003632-23-CZ
#> 16 endPoints.endPoint.title 2012-003632-23-CZ
#> 17 endPoints.endPoint.title 2012-003632-23-DE
#> 18 endPoints.endPoint.title 2012-003632-23-DE
#> 19 endPoints.endPoint.title 2012-003632-23-DE
#> 20 endPoints.endPoint.title 2012-003632-23-DE
#> 21 endPoints.endPoint.title 2012-003632-23-DE
#> 22 endPoints.endPoint.title 2012-003632-23-DE
#> 23 endPoints.endPoint.title 2012-003632-23-DE
#> 24 endPoints.endPoint.title 2012-003632-23-DE
#> 25 endPoints.endPoint.title 2012-003632-23-ES
#> 26 endPoints.endPoint.title 2012-003632-23-ES
#> 27 endPoints.endPoint.title 2012-003632-23-ES
#> 28 endPoints.endPoint.title 2012-003632-23-ES
#> 29 endPoints.endPoint.title 2012-003632-23-ES
#> 30 endPoints.endPoint.title 2012-003632-23-ES
#> 31 endPoints.endPoint.title 2012-003632-23-ES
#> 32 endPoints.endPoint.title 2012-003632-23-ES
#> 33 endPoints.endPoint.title 2012-003632-23-GB
#> 34 endPoints.endPoint.title 2012-003632-23-GB
#> 35 endPoints.endPoint.title 2012-003632-23-GB
#> 36 endPoints.endPoint.title 2012-003632-23-GB
#> 37 endPoints.endPoint.title 2012-003632-23-GB
#> 38 endPoints.endPoint.title 2012-003632-23-GB
#> 39 endPoints.endPoint.title 2012-003632-23-GB
#> 40 endPoints.endPoint.title 2012-003632-23-GB
#> 41 endPoints.endPoint.title 2012-003632-23-IT
#> 42 endPoints.endPoint.title 2012-003632-23-IT
#> 43 endPoints.endPoint.title 2012-003632-23-IT
#> 44 endPoints.endPoint.title 2012-003632-23-IT
#> 45 endPoints.endPoint.title 2012-003632-23-IT
#> 46 endPoints.endPoint.title 2012-003632-23-IT
#> 47 endPoints.endPoint.title 2012-003632-23-IT
#> 48 endPoints.endPoint.title 2012-003632-23-IT
#> 49 endPoints.endPoint.title 2012-003632-23-SE
#> 50 endPoints.endPoint.title 2012-003632-23-SE
#> 51 endPoints.endPoint.title 2012-003632-23-SE
#> 52 endPoints.endPoint.title 2012-003632-23-SE
#> 53 endPoints.endPoint.title 2012-003632-23-SE
#> 54 endPoints.endPoint.title 2012-003632-23-SE
#> 55 endPoints.endPoint.title 2012-003632-23-SE
#> 56 endPoints.endPoint.title 2012-003632-23-SE
#> 57 endPoints.endPoint.title 2014-003556-31-GB
#> 58 endPoints.endPoint.title 2014-003556-31-GB
#> 59 endPoints.endPoint.title 2014-003556-31-GB
#> 60 endPoints.endPoint.title 2014-003556-31-GB
#> 61 endPoints.endPoint.title 2014-003556-31-GB
#> 62 endPoints.endPoint.title 2014-003556-31-GB
#> 63 endPoints.endPoint.title 2014-003556-31-GB
#> 64 endPoints.endPoint.title 2014-003556-31-GB
#> 65 endPoints.endPoint.title 2014-003556-31-GB
#> 66 endPoints.endPoint.title 2014-003556-31-GB
#> 67 endPoints.endPoint.title 2014-003556-31-GB
#> 68 endPoints.endPoint.title 2014-003556-31-GB
#> 69 endPoints.endPoint.title 2014-003556-31-GB
#> 70 endPoints.endPoint.title 2014-003556-31-GB
#> 71 endPoints.endPoint.title 2014-003556-31-GB
#> 72 endPoints.endPoint.title 2014-003556-31-GB
#> 73 endPoints.endPoint.title 2014-003556-31-GB
#> 74 endPoints.endPoint.title 2014-003556-31-GB
#> 75 endPoints.endPoint.title 2014-003556-31-GB
#> 76 endPoints.endPoint.title 2014-003556-31-GB
#> 77 endPoints.endPoint.title 2014-003556-31-GB
#> 78 endPoints.endPoint.title 2014-003556-31-GB
#> 79 endPoints.endPoint.title 2014-003556-31-GB
#> 80 endPoints.endPoint.title 2014-003556-31-GB
#> 81 endPoints.endPoint.title 2014-003556-31-GB
#> 82 endPoints.endPoint.title 2014-003556-31-GB
#> 83 endPoints.endPoint.title 2014-003556-31-GB
#> 84 endPoints.endPoint.title 2014-003556-31-GB
#> 85 endPoints.endPoint.title 2014-003556-31-GB
#> 86 endPoints.endPoint.title 2014-003556-31-GB
#> 87 endPoints.endPoint.title 2014-003556-31-GB
#> 88 endPoints.endPoint.title 2014-003556-31-GB
#> 89 endPoints.endPoint.title 2014-003556-31-GB
#> 90 endPoints.endPoint.title 2014-003556-31-GB
#> 91 endPoints.endPoint.title 2014-003556-31-GB
#> 92 endPoints.endPoint.title 2014-003556-31-GB
#> 93 endPoints.endPoint.title 2014-003556-31-GB
#> 94 endPoints.endPoint.title 2014-003556-31-GB
#> 95 endPoints.endPoint.title 2014-003556-31-GB
#> 96 endPoints.endPoint.title 2014-003556-31-GB
#> 97 endPoints.endPoint.title 2014-003556-31-IT
#> 98 endPoints.endPoint.title 2014-003556-31-IT
#> 99 endPoints.endPoint.title 2014-003556-31-IT
#> 100 endPoints.endPoint.title 2014-003556-31-IT
#> 101 endPoints.endPoint.title 2014-003556-31-IT
#> 102 endPoints.endPoint.title 2014-003556-31-IT
#> 103 endPoints.endPoint.title 2014-003556-31-IT
#> 104 endPoints.endPoint.title 2014-003556-31-IT
#> 105 endPoints.endPoint.title 2014-003556-31-IT
#> 106 endPoints.endPoint.title 2014-003556-31-IT
#> 107 endPoints.endPoint.title 2014-003556-31-IT
#> 108 endPoints.endPoint.title 2014-003556-31-IT
#> 109 endPoints.endPoint.title 2014-003556-31-IT
#> 110 endPoints.endPoint.title 2014-003556-31-IT
#> 111 endPoints.endPoint.title 2014-003556-31-IT
#> 112 endPoints.endPoint.title 2014-003556-31-IT
#> 113 endPoints.endPoint.title 2014-003556-31-IT
#> 114 endPoints.endPoint.title 2014-003556-31-IT
#> 115 endPoints.endPoint.title 2014-003556-31-IT
#> 116 endPoints.endPoint.title 2014-003556-31-IT
#> 117 endPoints.endPoint.title 2014-003556-31-IT
#> 118 endPoints.endPoint.title 2014-003556-31-IT
#> 119 endPoints.endPoint.title 2014-003556-31-IT
#> 120 endPoints.endPoint.title 2014-003556-31-IT
#> 121 endPoints.endPoint.title 2014-003556-31-IT
#> 122 endPoints.endPoint.title 2014-003556-31-IT
#> 123 endPoints.endPoint.title 2014-003556-31-IT
#> 124 endPoints.endPoint.title 2014-003556-31-IT
#> 125 endPoints.endPoint.title 2014-003556-31-IT
#> 126 endPoints.endPoint.title 2014-003556-31-IT
#> 127 endPoints.endPoint.title 2014-003556-31-IT
#> 128 endPoints.endPoint.title 2014-003556-31-IT
#> 129 endPoints.endPoint.title 2014-003556-31-IT
#> 130 endPoints.endPoint.title 2014-003556-31-IT
#> 131 endPoints.endPoint.title 2014-003556-31-IT
#> 132 endPoints.endPoint.title 2014-003556-31-IT
#> 133 endPoints.endPoint.title 2014-003556-31-IT
#> 134 endPoints.endPoint.title 2014-003556-31-IT
#> 135 endPoints.endPoint.title 2014-003556-31-IT
#> 136 endPoints.endPoint.title 2014-003556-31-IT
#> 137 endPoints.endPoint.title 2014-003556-31-NL
#> 138 endPoints.endPoint.title 2014-003556-31-NL
#> 139 endPoints.endPoint.title 2014-003556-31-NL
#> 140 endPoints.endPoint.title 2014-003556-31-NL
#> 141 endPoints.endPoint.title 2014-003556-31-NL
#> 142 endPoints.endPoint.title 2014-003556-31-NL
#> 143 endPoints.endPoint.title 2014-003556-31-NL
#> 144 endPoints.endPoint.title 2014-003556-31-NL
#> 145 endPoints.endPoint.title 2014-003556-31-NL
#> 146 endPoints.endPoint.title 2014-003556-31-NL
#> 147 endPoints.endPoint.title 2014-003556-31-NL
#> 148 endPoints.endPoint.title 2014-003556-31-NL
#> 149 endPoints.endPoint.title 2014-003556-31-NL
#> 150 endPoints.endPoint.title 2014-003556-31-NL
#> 151 endPoints.endPoint.title 2014-003556-31-NL
#> 152 endPoints.endPoint.title 2014-003556-31-NL
#> 153 endPoints.endPoint.title 2014-003556-31-NL
#> 154 endPoints.endPoint.title 2014-003556-31-NL
#> 155 endPoints.endPoint.title 2014-003556-31-NL
#> 156 endPoints.endPoint.title 2014-003556-31-NL
#> 157 endPoints.endPoint.title 2014-003556-31-NL
#> 158 endPoints.endPoint.title 2014-003556-31-NL
#> 159 endPoints.endPoint.title 2014-003556-31-NL
#> 160 endPoints.endPoint.title 2014-003556-31-NL
#> 161 endPoints.endPoint.title 2014-003556-31-NL
#> 162 endPoints.endPoint.title 2014-003556-31-NL
#> 163 endPoints.endPoint.title 2014-003556-31-NL
#> 164 endPoints.endPoint.title 2014-003556-31-NL
#> 165 endPoints.endPoint.title 2014-003556-31-NL
#> 166 endPoints.endPoint.title 2014-003556-31-NL
#> 167 endPoints.endPoint.title 2014-003556-31-NL
#> 168 endPoints.endPoint.title 2014-003556-31-NL
#> 169 endPoints.endPoint.title 2014-003556-31-NL
#> 170 endPoints.endPoint.title 2014-003556-31-NL
#> 171 endPoints.endPoint.title 2014-003556-31-NL
#> 172 endPoints.endPoint.title 2014-003556-31-NL
#> 173 endPoints.endPoint.title 2014-003556-31-NL
#> 174 endPoints.endPoint.title 2014-003556-31-NL
#> 175 endPoints.endPoint.title 2014-003556-31-NL
#> 176 endPoints.endPoint.title 2014-003556-31-NL
#> 177 endPoints.endPoint.title 2014-003556-31-PL
#> 178 endPoints.endPoint.title 2014-003556-31-PL
#> 179 endPoints.endPoint.title 2014-003556-31-PL
#> 180 endPoints.endPoint.title 2014-003556-31-PL
#> 181 endPoints.endPoint.title 2014-003556-31-PL
#> 182 endPoints.endPoint.title 2014-003556-31-PL
#> 183 endPoints.endPoint.title 2014-003556-31-PL
#> 184 endPoints.endPoint.title 2014-003556-31-PL
#> 185 endPoints.endPoint.title 2014-003556-31-PL
#> 186 endPoints.endPoint.title 2014-003556-31-PL
#> 187 endPoints.endPoint.title 2014-003556-31-PL
#> 188 endPoints.endPoint.title 2014-003556-31-PL
#> 189 endPoints.endPoint.title 2014-003556-31-PL
#> 190 endPoints.endPoint.title 2014-003556-31-PL
#> 191 endPoints.endPoint.title 2014-003556-31-PL
#> 192 endPoints.endPoint.title 2014-003556-31-PL
#> 193 endPoints.endPoint.title 2014-003556-31-PL
#> 194 endPoints.endPoint.title 2014-003556-31-PL
#> 195 endPoints.endPoint.title 2014-003556-31-PL
#> 196 endPoints.endPoint.title 2014-003556-31-PL
#> 197 endPoints.endPoint.title 2014-003556-31-PL
#> 198 endPoints.endPoint.title 2014-003556-31-PL
#> 199 endPoints.endPoint.title 2014-003556-31-PL
#> 200 endPoints.endPoint.title 2014-003556-31-PL
#> 201 endPoints.endPoint.title 2014-003556-31-PL
#> 202 endPoints.endPoint.title 2014-003556-31-PL
#> 203 endPoints.endPoint.title 2014-003556-31-PL
#> 204 endPoints.endPoint.title 2014-003556-31-PL
#> 205 endPoints.endPoint.title 2014-003556-31-PL
#> 206 endPoints.endPoint.title 2014-003556-31-PL
#> 207 endPoints.endPoint.title 2014-003556-31-PL
#> 208 endPoints.endPoint.title 2014-003556-31-PL
#> 209 endPoints.endPoint.title 2014-003556-31-PL
#> 210 endPoints.endPoint.title 2014-003556-31-PL
#> 211 endPoints.endPoint.title 2014-003556-31-PL
#> 212 endPoints.endPoint.title 2014-003556-31-PL
#> 213 endPoints.endPoint.title 2014-003556-31-PL
#> 214 endPoints.endPoint.title 2014-003556-31-PL
#> 215 endPoints.endPoint.title 2014-003556-31-PL
#> 216 endPoints.endPoint.title 2014-003556-31-PL
#> 217 endPoints.endPoint.title 2014-003556-31-SE
#> 218 endPoints.endPoint.title 2014-003556-31-SE
#> 219 endPoints.endPoint.title 2014-003556-31-SE
#> 220 endPoints.endPoint.title 2014-003556-31-SE
#> 221 endPoints.endPoint.title 2014-003556-31-SE
#> 222 endPoints.endPoint.title 2014-003556-31-SE
#> 223 endPoints.endPoint.title 2014-003556-31-SE
#> 224 endPoints.endPoint.title 2014-003556-31-SE
#> 225 endPoints.endPoint.title 2014-003556-31-SE
#> 226 endPoints.endPoint.title 2014-003556-31-SE
#> 227 endPoints.endPoint.title 2014-003556-31-SE
#> 228 endPoints.endPoint.title 2014-003556-31-SE
#> 229 endPoints.endPoint.title 2014-003556-31-SE
#> 230 endPoints.endPoint.title 2014-003556-31-SE
#> 231 endPoints.endPoint.title 2014-003556-31-SE
#> 232 endPoints.endPoint.title 2014-003556-31-SE
#> 233 endPoints.endPoint.title 2014-003556-31-SE
#> 234 endPoints.endPoint.title 2014-003556-31-SE
#> 235 endPoints.endPoint.title 2014-003556-31-SE
#> 236 endPoints.endPoint.title 2014-003556-31-SE
#> 237 endPoints.endPoint.title 2014-003556-31-SE
#> 238 endPoints.endPoint.title 2014-003556-31-SE
#> 239 endPoints.endPoint.title 2014-003556-31-SE
#> 240 endPoints.endPoint.title 2014-003556-31-SE
#> 241 endPoints.endPoint.title 2014-003556-31-SE
#> 242 endPoints.endPoint.title 2014-003556-31-SE
#> 243 endPoints.endPoint.title 2014-003556-31-SE
#> 244 endPoints.endPoint.title 2014-003556-31-SE
#> 245 endPoints.endPoint.title 2014-003556-31-SE
#> 246 endPoints.endPoint.title 2014-003556-31-SE
#> 247 endPoints.endPoint.title 2014-003556-31-SE
#> 248 endPoints.endPoint.title 2014-003556-31-SE
#> 249 endPoints.endPoint.title 2014-003556-31-SE
#> 250 endPoints.endPoint.title 2014-003556-31-SE
#> value
#> 1 Time to Overall Response
#> 2 Durability of First Response
#> 3 Glucocortoid Tapering
#> 4 Survival Pre-HSCT
#> 5 Overall Survival
#> 6 Overall Response
#> 7 Survival Post-HSCT
#> 8 Cumulative Duration of Response
#> 9 Time to Overall Response
#> 10 Durability of First Response
#> 11 Glucocortoid Tapering
#> 12 Survival Pre-HSCT
#> 13 Overall Survival
#> 14 Overall Response
#> 15 Survival Post-HSCT
#> 16 Cumulative Duration of Response
#> 17 Time to Overall Response
#> 18 Durability of First Response
#> 19 Glucocortoid Tapering
#> 20 Survival Pre-HSCT
#> 21 Overall Survival
#> 22 Overall Response
#> 23 Survival Post-HSCT
#> 24 Cumulative Duration of Response
#> 25 Time to Overall Response
#> 26 Durability of First Response
#> 27 Glucocortoid Tapering
#> 28 Survival Pre-HSCT
#> 29 Overall Survival
#> 30 Overall Response
#> 31 Survival Post-HSCT
#> 32 Cumulative Duration of Response
#> 33 Time to Overall Response
#> 34 Durability of First Response
#> 35 Glucocortoid Tapering
#> 36 Survival Pre-HSCT
#> 37 Overall Survival
#> 38 Overall Response
#> 39 Survival Post-HSCT
#> 40 Cumulative Duration of Response
#> 41 Time to Overall Response
#> 42 Durability of First Response
#> 43 Glucocortoid Tapering
#> 44 Survival Pre-HSCT
#> 45 Overall Survival
#> 46 Overall Response
#> 47 Survival Post-HSCT
#> 48 Cumulative Duration of Response
#> 49 Time to Overall Response
#> 50 Durability of First Response
#> 51 Glucocortoid Tapering
#> 52 Survival Pre-HSCT
#> 53 Overall Survival
#> 54 Overall Response
#> 55 Survival Post-HSCT
#> 56 Cumulative Duration of Response
#> 57 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 6 Months Corrected age (CA)
#> 58 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 20 Months CA
#> 59 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 12 Months CA
#> 60 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 24 Months CA
#> 61 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 4.75 Years CA
#> 62 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 5 Years CA
#> 63 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 12 Months CA
#> 64 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 5-Years CA
#> 65 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 24 Months CA
#> 66 Number of Participants With Nystagmus at 24 Months CA
#> 67 Number of Participants With Nystagmus at 12 Months CA
#> 68 Number of Participants With Nystagmus at 5 Years CA
#> 69 Refraction With Cycloplegia as Assessed by Retinoscopy at 6 Months CA
#> 70 Refraction With Cycloplegia as Assessed by Retinoscopy at 20 Month CA
#> 71 Refraction With Cycloplegia as Assessed by Retinoscopy at 12 Month CA
#> 72 Refraction With Cycloplegia as Assessed by Retinoscopy at 4.75 Years CA
#> 73 Number of Participants With Stereoacuity as Assessed With the Lang Stereotest At 5 Years CA
#> 74 Number of Participants With Adverse Events (AEs)
#> 75 Change From Baseline in Body Weight Z-score
#> 76 Change From Baseline in Height Z-score
#> 77 Change From Baseline in Head Circumference Z-score
#> 78 Change from Baseline (12 Months CA) in Cognitive Development as Assessed by Bayley Scales of Infant and Toddler Development (BSID-III) Composite Scores at 24 Months CA
#> 79 Cognitive Development as Assessed by Wechsler Preschool and Primary Scale of Intelligence (WPPSI-IV) Full Scale at 5 Years CA
#> 80 Number of Participants With Abnormal Physical Examination
#> 81 Number of Participants Diagnosed With Cerebral Palsy (CP) by Neurological Examination at 24 Months CA
#> 82 Change From Baseline (6 Months CA) in Child Behavior as Assessed by Vineland Adaptive Behaviour Scales (VABS-II)
#> 83 Number of Participants With Normal and Abnormal Hearing Screening Status
#> 84 Number of Participants With Child Behaviour as Assessed by Child Behaviour Checklist (CBCL) Based on T-Score Clinical Categories
#> 85 Child Behavior as Assessed by Attention-Deficit/Hyperactivity Disorder Rating Scale (ADHD-RS) Based on Total Score
#> 86 Number of Participants With Pulmonary Morbidity
#> 87 Child Behavior as Assessed by Social Communication Questionnaire (SCQ) Based on Total Score
#> 88 Number of Participants With Survival Status
#> 89 Change From Baseline (3 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Infant Scale
#> 90 Change From Baseline (24 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Generic Core Scale (GCS) Total Score
#> 91 Number of Participants With Health Status Measured by the Health Status Classification System-Preschool (HSCS-PS)
#> 92 Health Care Resource Use (HCRU)
#> 93 Health Status Measured by the Health Utilities Index (HUI) Mark 2 and 3
#> 94 Health Care Resource Utilization (HCRU): Number of Visits to Emergency Department
#> 95 Health Care Resource Utilization (HCRU): Duration of Hospitalization
#> 96 Health Care Resource Utilization (HCRU): Number of Participants who Required Prescription Eyeglasses and Educational Support
#> 97 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 6 Months Corrected age (CA)
#> 98 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 20 Months CA
#> 99 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 12 Months CA
#> 100 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 24 Months CA
#> 101 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 4.75 Years CA
#> 102 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 5 Years CA
#> 103 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 12 Months CA
#> 104 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 5-Years CA
#> 105 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 24 Months CA
#> 106 Number of Participants With Nystagmus at 24 Months CA
#> 107 Number of Participants With Nystagmus at 12 Months CA
#> 108 Number of Participants With Nystagmus at 5 Years CA
#> 109 Refraction With Cycloplegia as Assessed by Retinoscopy at 6 Months CA
#> 110 Refraction With Cycloplegia as Assessed by Retinoscopy at 20 Month CA
#> 111 Refraction With Cycloplegia as Assessed by Retinoscopy at 12 Month CA
#> 112 Refraction With Cycloplegia as Assessed by Retinoscopy at 4.75 Years CA
#> 113 Number of Participants With Stereoacuity as Assessed With the Lang Stereotest At 5 Years CA
#> 114 Number of Participants With Adverse Events (AEs)
#> 115 Change From Baseline in Body Weight Z-score
#> 116 Change From Baseline in Height Z-score
#> 117 Change From Baseline in Head Circumference Z-score
#> 118 Change from Baseline (12 Months CA) in Cognitive Development as Assessed by Bayley Scales of Infant and Toddler Development (BSID-III) Composite Scores at 24 Months CA
#> 119 Cognitive Development as Assessed by Wechsler Preschool and Primary Scale of Intelligence (WPPSI-IV) Full Scale at 5 Years CA
#> 120 Number of Participants With Abnormal Physical Examination
#> 121 Number of Participants Diagnosed With Cerebral Palsy (CP) by Neurological Examination at 24 Months CA
#> 122 Change From Baseline (6 Months CA) in Child Behavior as Assessed by Vineland Adaptive Behaviour Scales (VABS-II)
#> 123 Number of Participants With Normal and Abnormal Hearing Screening Status
#> 124 Number of Participants With Child Behaviour as Assessed by Child Behaviour Checklist (CBCL) Based on T-Score Clinical Categories
#> 125 Child Behavior as Assessed by Attention-Deficit/Hyperactivity Disorder Rating Scale (ADHD-RS) Based on Total Score
#> 126 Number of Participants With Pulmonary Morbidity
#> 127 Child Behavior as Assessed by Social Communication Questionnaire (SCQ) Based on Total Score
#> 128 Number of Participants With Survival Status
#> 129 Change From Baseline (3 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Infant Scale
#> 130 Change From Baseline (24 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Generic Core Scale (GCS) Total Score
#> 131 Number of Participants With Health Status Measured by the Health Status Classification System-Preschool (HSCS-PS)
#> 132 Health Care Resource Use (HCRU)
#> 133 Health Status Measured by the Health Utilities Index (HUI) Mark 2 and 3
#> 134 Health Care Resource Utilization (HCRU): Number of Visits to Emergency Department
#> 135 Health Care Resource Utilization (HCRU): Duration of Hospitalization
#> 136 Health Care Resource Utilization (HCRU): Number of Participants who Required Prescription Eyeglasses and Educational Support
#> 137 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 6 Months Corrected age (CA)
#> 138 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 20 Months CA
#> 139 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 12 Months CA
#> 140 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 24 Months CA
#> 141 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 4.75 Years CA
#> 142 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 5 Years CA
#> 143 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 12 Months CA
#> 144 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 5-Years CA
#> 145 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 24 Months CA
#> 146 Number of Participants With Nystagmus at 24 Months CA
#> 147 Number of Participants With Nystagmus at 12 Months CA
#> 148 Number of Participants With Nystagmus at 5 Years CA
#> 149 Refraction With Cycloplegia as Assessed by Retinoscopy at 6 Months CA
#> 150 Refraction With Cycloplegia as Assessed by Retinoscopy at 20 Month CA
#> 151 Refraction With Cycloplegia as Assessed by Retinoscopy at 12 Month CA
#> 152 Refraction With Cycloplegia as Assessed by Retinoscopy at 4.75 Years CA
#> 153 Number of Participants With Stereoacuity as Assessed With the Lang Stereotest At 5 Years CA
#> 154 Number of Participants With Adverse Events (AEs)
#> 155 Change From Baseline in Body Weight Z-score
#> 156 Change From Baseline in Height Z-score
#> 157 Change From Baseline in Head Circumference Z-score
#> 158 Change from Baseline (12 Months CA) in Cognitive Development as Assessed by Bayley Scales of Infant and Toddler Development (BSID-III) Composite Scores at 24 Months CA
#> 159 Cognitive Development as Assessed by Wechsler Preschool and Primary Scale of Intelligence (WPPSI-IV) Full Scale at 5 Years CA
#> 160 Number of Participants With Abnormal Physical Examination
#> 161 Number of Participants Diagnosed With Cerebral Palsy (CP) by Neurological Examination at 24 Months CA
#> 162 Change From Baseline (6 Months CA) in Child Behavior as Assessed by Vineland Adaptive Behaviour Scales (VABS-II)
#> 163 Number of Participants With Normal and Abnormal Hearing Screening Status
#> 164 Number of Participants With Child Behaviour as Assessed by Child Behaviour Checklist (CBCL) Based on T-Score Clinical Categories
#> 165 Child Behavior as Assessed by Attention-Deficit/Hyperactivity Disorder Rating Scale (ADHD-RS) Based on Total Score
#> 166 Number of Participants With Pulmonary Morbidity
#> 167 Child Behavior as Assessed by Social Communication Questionnaire (SCQ) Based on Total Score
#> 168 Number of Participants With Survival Status
#> 169 Change From Baseline (3 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Infant Scale
#> 170 Change From Baseline (24 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Generic Core Scale (GCS) Total Score
#> 171 Number of Participants With Health Status Measured by the Health Status Classification System-Preschool (HSCS-PS)
#> 172 Health Care Resource Use (HCRU)
#> 173 Health Status Measured by the Health Utilities Index (HUI) Mark 2 and 3
#> 174 Health Care Resource Utilization (HCRU): Number of Visits to Emergency Department
#> 175 Health Care Resource Utilization (HCRU): Duration of Hospitalization
#> 176 Health Care Resource Utilization (HCRU): Number of Participants who Required Prescription Eyeglasses and Educational Support
#> 177 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 6 Months Corrected age (CA)
#> 178 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 20 Months CA
#> 179 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 12 Months CA
#> 180 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 24 Months CA
#> 181 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 4.75 Years CA
#> 182 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 5 Years CA
#> 183 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 12 Months CA
#> 184 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 5-Years CA
#> 185 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 24 Months CA
#> 186 Number of Participants With Nystagmus at 24 Months CA
#> 187 Number of Participants With Nystagmus at 12 Months CA
#> 188 Number of Participants With Nystagmus at 5 Years CA
#> 189 Refraction With Cycloplegia as Assessed by Retinoscopy at 6 Months CA
#> 190 Refraction With Cycloplegia as Assessed by Retinoscopy at 20 Month CA
#> 191 Refraction With Cycloplegia as Assessed by Retinoscopy at 12 Month CA
#> 192 Refraction With Cycloplegia as Assessed by Retinoscopy at 4.75 Years CA
#> 193 Number of Participants With Stereoacuity as Assessed With the Lang Stereotest At 5 Years CA
#> 194 Number of Participants With Adverse Events (AEs)
#> 195 Change From Baseline in Body Weight Z-score
#> 196 Change From Baseline in Height Z-score
#> 197 Change From Baseline in Head Circumference Z-score
#> 198 Change from Baseline (12 Months CA) in Cognitive Development as Assessed by Bayley Scales of Infant and Toddler Development (BSID-III) Composite Scores at 24 Months CA
#> 199 Cognitive Development as Assessed by Wechsler Preschool and Primary Scale of Intelligence (WPPSI-IV) Full Scale at 5 Years CA
#> 200 Number of Participants With Abnormal Physical Examination
#> 201 Number of Participants Diagnosed With Cerebral Palsy (CP) by Neurological Examination at 24 Months CA
#> 202 Change From Baseline (6 Months CA) in Child Behavior as Assessed by Vineland Adaptive Behaviour Scales (VABS-II)
#> 203 Number of Participants With Normal and Abnormal Hearing Screening Status
#> 204 Number of Participants With Child Behaviour as Assessed by Child Behaviour Checklist (CBCL) Based on T-Score Clinical Categories
#> 205 Child Behavior as Assessed by Attention-Deficit/Hyperactivity Disorder Rating Scale (ADHD-RS) Based on Total Score
#> 206 Number of Participants With Pulmonary Morbidity
#> 207 Child Behavior as Assessed by Social Communication Questionnaire (SCQ) Based on Total Score
#> 208 Number of Participants With Survival Status
#> 209 Change From Baseline (3 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Infant Scale
#> 210 Change From Baseline (24 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Generic Core Scale (GCS) Total Score
#> 211 Number of Participants With Health Status Measured by the Health Status Classification System-Preschool (HSCS-PS)
#> 212 Health Care Resource Use (HCRU)
#> 213 Health Status Measured by the Health Utilities Index (HUI) Mark 2 and 3
#> 214 Health Care Resource Utilization (HCRU): Number of Visits to Emergency Department
#> 215 Health Care Resource Utilization (HCRU): Duration of Hospitalization
#> 216 Health Care Resource Utilization (HCRU): Number of Participants who Required Prescription Eyeglasses and Educational Support
#> 217 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 6 Months Corrected age (CA)
#> 218 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 20 Months CA
#> 219 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 12 Months CA
#> 220 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 24 Months CA
#> 221 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 4.75 Years CA
#> 222 Number of Participants With Visual Acuity as Assessed by an Age-appropriate Method at 5 Years CA
#> 223 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 12 Months CA
#> 224 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 5-Years CA
#> 225 Number of Participants With Oculomotor Examination (Motility) and Ocular Alignment (Assessed by Corneal Light Reflex and Cover Test) at 24 Months CA
#> 226 Number of Participants With Nystagmus at 24 Months CA
#> 227 Number of Participants With Nystagmus at 12 Months CA
#> 228 Number of Participants With Nystagmus at 5 Years CA
#> 229 Refraction With Cycloplegia as Assessed by Retinoscopy at 6 Months CA
#> 230 Refraction With Cycloplegia as Assessed by Retinoscopy at 20 Month CA
#> 231 Refraction With Cycloplegia as Assessed by Retinoscopy at 12 Month CA
#> 232 Refraction With Cycloplegia as Assessed by Retinoscopy at 4.75 Years CA
#> 233 Number of Participants With Stereoacuity as Assessed With the Lang Stereotest At 5 Years CA
#> 234 Number of Participants With Adverse Events (AEs)
#> 235 Change From Baseline in Body Weight Z-score
#> 236 Change From Baseline in Height Z-score
#> 237 Change From Baseline in Head Circumference Z-score
#> 238 Change from Baseline (12 Months CA) in Cognitive Development as Assessed by Bayley Scales of Infant and Toddler Development (BSID-III) Composite Scores at 24 Months CA
#> 239 Cognitive Development as Assessed by Wechsler Preschool and Primary Scale of Intelligence (WPPSI-IV) Full Scale at 5 Years CA
#> 240 Number of Participants With Abnormal Physical Examination
#> 241 Number of Participants Diagnosed With Cerebral Palsy (CP) by Neurological Examination at 24 Months CA
#> 242 Change From Baseline (6 Months CA) in Child Behavior as Assessed by Vineland Adaptive Behaviour Scales (VABS-II)
#> 243 Number of Participants With Normal and Abnormal Hearing Screening Status
#> 244 Number of Participants With Child Behaviour as Assessed by Child Behaviour Checklist (CBCL) Based on T-Score Clinical Categories
#> 245 Child Behavior as Assessed by Attention-Deficit/Hyperactivity Disorder Rating Scale (ADHD-RS) Based on Total Score
#> 246 Number of Participants With Pulmonary Morbidity
#> 247 Child Behavior as Assessed by Social Communication Questionnaire (SCQ) Based on Total Score
#> 248 Number of Participants With Survival Status
#> 249 Change From Baseline (3 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Infant Scale
#> 250 Change From Baseline (24 Months CA) in Pediatric Quality of Life Inventory (PedsQL™) Scale: Generic Core Scale (GCS) Total Score
#> item
#> 1 1
#> 2 2
#> 3 3
#> 4 4
#> 5 5
#> 6 6
#> 7 7
#> 8 8
#> 9 1
#> 10 2
#> 11 3
#> 12 4
#> 13 5
#> 14 6
#> 15 7
#> 16 8
#> 17 1
#> 18 2
#> 19 3
#> 20 4
#> 21 5
#> 22 6
#> 23 7
#> 24 8
#> 25 1
#> 26 2
#> 27 3
#> 28 4
#> 29 5
#> 30 6
#> 31 7
#> 32 8
#> 33 1
#> 34 2
#> 35 3
#> 36 4
#> 37 5
#> 38 6
#> 39 7
#> 40 8
#> 41 1
#> 42 2
#> 43 3
#> 44 4
#> 45 5
#> 46 6
#> 47 7
#> 48 8
#> 49 1
#> 50 2
#> 51 3
#> 52 4
#> 53 5
#> 54 6
#> 55 7
#> 56 8
#> 57 1
#> 58 2
#> 59 3
#> 60 4
#> 61 5
#> 62 6
#> 63 7
#> 64 8
#> 65 9
#> 66 10
#> 67 11
#> 68 12
#> 69 13
#> 70 14
#> 71 15
#> 72 16
#> 73 17
#> 74 18
#> 75 19
#> 76 20
#> 77 21
#> 78 22
#> 79 23
#> 80 24
#> 81 25
#> 82 26
#> 83 27
#> 84 28
#> 85 29
#> 86 30
#> 87 31
#> 88 32
#> 89 33
#> 90 34
#> 91 35
#> 92 36
#> 93 37
#> 94 38
#> 95 39
#> 96 40
#> 97 1
#> 98 2
#> 99 3
#> 100 4
#> 101 5
#> 102 6
#> 103 7
#> 104 8
#> 105 9
#> 106 10
#> 107 11
#> 108 12
#> 109 13
#> 110 14
#> 111 15
#> 112 16
#> 113 17
#> 114 18
#> 115 19
#> 116 20
#> 117 21
#> 118 22
#> 119 23
#> 120 24
#> 121 25
#> 122 26
#> 123 27
#> 124 28
#> 125 29
#> 126 30
#> 127 31
#> 128 32
#> 129 33
#> 130 34
#> 131 35
#> 132 36
#> 133 37
#> 134 38
#> 135 39
#> 136 40
#> 137 1
#> 138 2
#> 139 3
#> 140 4
#> 141 5
#> 142 6
#> 143 7
#> 144 8
#> 145 9
#> 146 10
#> 147 11
#> 148 12
#> 149 13
#> 150 14
#> 151 15
#> 152 16
#> 153 17
#> 154 18
#> 155 19
#> 156 20
#> 157 21
#> 158 22
#> 159 23
#> 160 24
#> 161 25
#> 162 26
#> 163 27
#> 164 28
#> 165 29
#> 166 30
#> 167 31
#> 168 32
#> 169 33
#> 170 34
#> 171 35
#> 172 36
#> 173 37
#> 174 38
#> 175 39
#> 176 40
#> 177 1
#> 178 2
#> 179 3
#> 180 4
#> 181 5
#> 182 6
#> 183 7
#> 184 8
#> 185 9
#> 186 10
#> 187 11
#> 188 12
#> 189 13
#> 190 14
#> 191 15
#> 192 16
#> 193 17
#> 194 18
#> 195 19
#> 196 20
#> 197 21
#> 198 22
#> 199 23
#> 200 24
#> 201 25
#> 202 26
#> 203 27
#> 204 28
#> 205 29
#> 206 30
#> 207 31
#> 208 32
#> 209 33
#> 210 34
#> 211 35
#> 212 36
#> 213 37
#> 214 38
#> 215 39
#> 216 40
#> 217 1
#> 218 2
#> 219 3
#> 220 4
#> 221 5
#> 222 6
#> 223 7
#> 224 8
#> 225 9
#> 226 10
#> 227 11
#> 228 12
#> 229 13
#> 230 14
#> 231 15
#> 232 16
#> 233 17
#> 234 18
#> 235 19
#> 236 20
#> 237 21
#> 238 22
#> 239 23
#> 240 24
#> 241 25
#> 242 26
#> 243 27
#> 244 28
#> 245 29
#> 246 30
#> 247 31
#> 248 32
#> 249 33
#> 250 34
#> [ reached 'max' / getOption("max.print") -- omitted 23 rows ]