---
layout: post
title: Simulation of a Two-Group Parallel-Arm RCT with Interim Analyses
author: Zad Rafi
date: 2021-02-01T00:00:00.000Z
description: >-
A simulation of a two-group parallel-arm randomized trial with interim
analysis using the rpact package.
archives: statistics
slug: interim-analysis
url: statistics/interim-analysis
zotero: 'yes'
categories:
- statistics
tags:
- statistical reporting
- statistical science
- statistical workflow
- data management
image: /images/norm.svg
og_image: /images/norm.svg
keywords:
- statistical reporting
- statistics
- accuracy
- data science
output:
blogdown::html_page:
df_print: kable
toc: true
---
< script src = "interim_analyses_files/libs/kePrint-0.0.1/kePrint.js" ></ script >
< link href = "interim_analyses_files/libs/lightable-0.0.1/lightable.css" rel = "stylesheet" />
------------------------------------------------------------------------
Recently [ Andrew Althouse ](https://twitter.com/ADAlthousePhD) informed
me that he was going to simulate a two-group parallel-arm randomized
trial with interim analyses using the
[ `rpact` ](https://CRAN.R-project.org/package=rpact) `R` package, so I
offered to also help in constructing the `R` code to do so. He already
has a number of `R` scripts on his GitHub repo for doing similar
simulations, which can be [viewed
here](https://github.com/aalthous/RCT-Simulation-v1) and a number of
tweets explaining these simulations. For this example, his goal was to
simulate a trial where the outcome was binary and the probability of
death for each group could be tuned in addition to:
------------------------------------------------------------------------
- the total number of participants
------------------------------------------------------------------------
- the number of interim analyses
------------------------------------------------------------------------
- the schedule of the interim analyses
------------------------------------------------------------------------
- the group-sequential design used
------------------------------------------------------------------------
along with the usual trial analysis parameters such as:
------------------------------------------------------------------------
- the $\alpha$-level
------------------------------------------------------------------------
- the type of test (1-sided vs. 2-sided).
------------------------------------------------------------------------
The goal was to be able to produce a table of various statistics such
as:
------------------------------------------------------------------------
- the odds ratio
------------------------------------------------------------------------
- the confidence limits
------------------------------------------------------------------------
- the $P$-value
------------------------------------------------------------------------
- the number of successes
------------------------------------------------------------------------
for each of the interim analyses specified.
------------------------------------------------------------------------
The function below is a reflection of our efforts to do so, and also
returns several plots from the
[ `rpact` ](https://CRAN.R-project.org/package=rpact) package for the
design that is chosen along with a plot comparing the design to other
designs. In order to get similar results, you will need to load the `R`
function first, and then simply enter the proper inputs. While there may
be more efficient ways to write the code, for example using `lapply()`
instead of for loops, we have chosen not to do so, and we have also
tried to minimize the number of `R` packages necessary for the function
to work but the following will be required:
------------------------------------------------------------------------
- [ `rpact` ](https://CRAN.R-project.org/package=rpact)
------------------------------------------------------------------------
- [ `stringr` ](https://CRAN.R-project.org/package=stringr)
------------------------------------------------------------------------
You can quickly install and load both using:
------------------------------------------------------------------------
``` r
req_packs <- c ("rpact" , "stringr" , "ggplot2" )
install.packages (req_packs)
lapply (req_packs, library, character.only = TRUE )
```
------------------------------------------------------------------------
# Setting up the Function
------------------------------------------------------------------------
``` r
#' @title Simulation of a Two-Group Parallel-Arm Trial With Interim Analyses
#' @docType Custom function for simulation from the rpact package
#' @author Andrew Althouse with edits by Zad Rafi
#' NOTE : If you want to confirm "type 1 error" under different stopping rules,
#' make death = in the two treatment arms (e.g. no treatment effect)
#' NOTE : I have set this one up to test the power for a treatment that would reduce mortality
#' from 40% in control group (1) to 30% in treatment group (2)
#' NOTE : Trial Design Parameters - Part 1
#' Here we will specify the basics: total N patients to enroll, and death rate for each treatment arm
#' NOTE : Trial Design Parameters - Part 2
#' Here we will define the interim analysis strategy and stopping rules
#' For this trial we will include provisions for efficacy stopping only (no pre-specified futility stopping)
#' We will use the rpact package to compute the stopping/success thresholds at the interim and final analysis
#' NOTE : Required packages: rpact and stringr
#' @param nSims # The number of simulations, the default is 1000
#' @param nPatients # here is where you specify the planned max number of patients you want included in each RCT
#' @param death1 # here is where you specify the event rate for patients receiving 'treatment 1' in these trial
#' @param death2 # here is where you specify the event rate for patients receiving 'treatment 2' in these trials
#' @param nLooks # here is where you put the number of looks that will take place (INCLUDING the final analysis)
#' @param analyses_scheduled # schedule of interim analyses
#' @param sided # Whether the test is 1-sided or 2-sided
#' @param alpha # Specified alpha level, the default is 0.05
#' @param informationRates #
#' @param trials # The total number of trials you wish to load in the table results.
#' @param typeOfDesign # The type of design.
#' @param seed # Argument to set the seed for the simulations
#' @return list of dataframes and plots
#' @example See below this code block
interim_sim <- function (nPatients = 1000 , death1 = 0.4 , death2 = 0.3 ,
nLooks = 4 , analyses_scheduled = c (0.25 , 0.50 , 0.75 , 1 ),
sided = 1 , alpha = 0.05 ,
informationRates = analyses_scheduled,
typeOfDesign = "asOF" , nSims = 1000 , trials = 10 ,
seed = 1031 ) {
efficacy_thresholds <- numeric (nLooks)
design <- getDesignGroupSequential (
sided = sided, alpha = alpha,
informationRates = analyses_scheduled,
typeOfDesign = typeOfDesign)
design_2 <- getDesignGroupSequential (typeOfDesign = "P" ) # Pocock
design_3 <- getDesignGroupSequential (typeOfDesign = "asP" ) # Alpha-spending Pocock
design_4 <- getDesignGroupSequential (typeOfDesign = "OF" ) # O'Brien-Fleming
designSet <- getDesignSet (designs = c (design, design_2,
design_3, design_4),
variedParameters = "typeOfDesign" )
RNGkind (kind = "L'Ecuyer-CMRG" )
set.seed (seed)
for (j in 1 : nLooks) {
efficacy_thresholds[j] <- design$ stageLevels[j]
}
analyses_nPatients <- analyses_scheduled * nPatients
efficacy_thresholds
pb <- txtProgressBar (min = 0 , max = nSims, initial = 0 , style = 3 )
trialnum <- numeric (nSims)
or <- data.frame (matrix (ncol = nLooks, nrow = nSims))
lcl <- data.frame (matrix (ncol = nLooks, nrow = nSims))
ucl <- data.frame (matrix (ncol = nLooks, nrow = nSims))
pval <- data.frame (matrix (ncol = nLooks, nrow = nSims))
success <- data.frame (matrix (ncol = nLooks, nrow = nSims))
strings <- c ("OR_%d" , "LCL_%d" , "UCL_%d" ,
"Pval_%d" , "Success_%d" )
colnames (or) <- sprintf ("OR_%d" , (1 : nLooks))
colnames (lcl) <- sprintf ("LCL_%d" , (1 : nLooks))
colnames (ucl) <- sprintf ("UCL_%d" , (1 : nLooks))
colnames (pval) <- sprintf ("Pval_%d" , (1 : nLooks))
colnames (success) <- sprintf ("Success_%d" , (1 : nLooks))
overall_success <- numeric (nSims)
df <- data.frame (trialnum, or, lcl, ucl,
pval, success, overall_success)
RNGkind (kind = "L'Ecuyer-CMRG" )
set.seed (seed)
time <- system.time (
for (i in 1 : nSims) {
trialnum[i] <- i
pid <- seq (1 , nPatients, by = 1 )
treatment <- rep (1 : 2 , nPatients / 2 )
deathprob <- numeric (nPatients)
deathprob[treatment == 1 ] <- death1
deathprob[treatment == 2 ] <- death2
death <- rbinom (nPatients, 1 , deathprob)
trialdata <- data.frame (cbind (pid, treatment, death))
for (j in 1 : nLooks) {
analysisdata <- subset (trialdata, pid <= analyses_nPatients[j])
model <- glm (death ~ treatment,
family = binomial (link = "logit" ),
data = analysisdata)
or[i, j] <- exp (summary (model)$ coefficients[2 ])
lcl[i, j] <- exp (confint.default ((model))[2 , 1 ])
ucl[i, j] <- exp (confint.default ((model))[2 , 2 ])
pval[i, j] <- summary (model)$ coefficients[8 ]
success[i, j] <- ifelse (or[i, j] < 1 & pval[i, j] < efficacy_thresholds[j], 1 , 0 )
}
overall_success[i] <- 0
for (j in 1 : nLooks) {
if (success[i, j] == 1 ) {
overall_success[i] <- 1
}
}
setTxtProgressBar (pb, i)
})
df <- data.frame (trialnum, or, lcl, ucl, pval,
success, overall_success)
simulation_results <- data.frame (matrix (vector (),
nrow = nPatients, ncol = (length (df))))
colnames (simulation_results) <- c ("trialnum" , (do.call (
rbind,
lapply (1 : length (strings),
FUN = function (j) {
(do.call (rbind, lapply (1 : nLooks,
FUN = function (i) ((sprintf (strings, i)))
)[]))[, j]
}
)
)), "overall_success" )
simulation_results[intersect (names (df), names (simulation_results))] <- (df[intersect (
names (df),
names (simulation_results)
)])
simulation_results <- as.data.frame (simulation_results)
outputs <- simulation_results[, c (- 1 , - length (simulation_results))]
cols <- as.character (1 : nLooks)
rows <- as.character (1 : length (strings))
interim <- matrix (
nrow = length (strings), ncol = nLooks,
dimnames = list ((rows), (cols)),
data = rep (0 , (length (strings) * nLooks)))
for (i in cols) {
interim[, i] <- str_subset (colnames (outputs), i)
}
colnames (interim) <- sprintf ("Interim_Look_%d" , (1 : nLooks))
colnames (simulation_results)[1 ] <- c ("TrialNum" )
colnames (simulation_results)[length (simulation_results)] <- c ("Overall_Success" )
simulation_results_trials <- head (simulation_results, trials)
results <- list (
summary (design),
summary (time),
plot (design, 1 ) +
theme_light () +
theme (
plot.title = element_text (size = 14 , face = "bold" ),
axis.title = element_text (size = 12 , face = "bold" )
),
plot (designSet, type = 1 ) +
theme_light () +
theme (
plot.title = element_text (size = 14 , face = "bold" ),
axis.title = element_text (size = 12 , face = "bold" )
),
table (overall_success),
simulation_results_trials)
names (results) <- c (
"Design Summary" , "Time to complete simulation" ,
"Main Design Plot" , "Plot of Various Designs" ,
"Table of Overall Success" , "Simulation Results" )
return (results)
}
```
------------------------------------------------------------------------
# A Simulated Example
------------------------------------------------------------------------
------------------------------------------------------------------------
``` r
results <- interim_sim (nPatients = 1000 , death1 = 0.4 , death2 = 0.3 , nLooks = 4 ,
analyses_scheduled = c (0.25 , 0.50 , 0.75 , 1 ),
sided = 1 , alpha = 0.025 , typeOfDesign = "asOF" ,
informationRates = c (0.25 , 0.50 , 0.75 , 1 ),
nSims = 1000 , trials = 20 , seed = 1031 )
```
------------------------------------------------------------------------
# Examining the Results
``` r
results[1 : 5 ]
#> $`Design Summary`
#>
#> $`Time to complete simulation`
#> user system elapsed
#> 7.053 0.672 7.723
#>
#> $`Main Design Plot`
#> NULL
#>
#> $`Plot of Various Designs`
#> NULL
#>
#> $`Table of Overall Success`
#> overall_success
#> 0 1
#> 134 866
```
------------------------------------------------------------------------
------------------------------------------------------------------------
To examine the results, I used the kableExtra package, though this is
not necessary, and simply using the following script will suffice
------------------------------------------------------------------------
``` r
table_results <- results[[6 ]]
View (table_results)
```
------------------------------------------------------------------------
< div style = "border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; " >
< table class = "lightable-classic" data-quarto-postprocess = "true" style = "font-size: 16px; font-family: Cambria; margin-left: auto; margin-right: auto;border-bottom: 0;" >
< colgroup >
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
< col style = "width: 4%" />
</ colgroup >
< thead >
< tr >
< th data-quarto-table-cell-role = "th" style = "text-align: center; empty-cells: hide;" ></ th >
< th colspan = "5" data-quarto-table-cell-role = "th" style = "text-align: center; padding-bottom: 0; padding-left: 3px; padding-right: 3px; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< div style = "border-bottom: 1px solid #111111; margin-bottom: -1px; " >
Interim_Look_1
</ div ></ th >
< th colspan = "5" data-quarto-table-cell-role = "th" style = "text-align: center; padding-bottom: 0; padding-left: 3px; padding-right: 3px; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< div style = "border-bottom: 1px solid #111111; margin-bottom: -1px; " >
Interim_Look_2
</ div ></ th >
< th colspan = "5" data-quarto-table-cell-role = "th" style = "text-align: center; padding-bottom: 0; padding-left: 3px; padding-right: 3px; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< div style = "border-bottom: 1px solid #111111; margin-bottom: -1px; " >
Interim_Look_3
</ div ></ th >
< th colspan = "5" data-quarto-table-cell-role = "th" style = "text-align: center; padding-bottom: 0; padding-left: 3px; padding-right: 3px; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< div style = "border-bottom: 1px solid #111111; margin-bottom: -1px; " >
Interim_Look_4
</ div ></ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; empty-cells: hide;" ></ th >
</ tr >
< tr >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > TrialNum</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > OR_1</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > LCL_1</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > UCL_1</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Pval_1</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Success_1</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > OR_2</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > LCL_2</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > UCL_2</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Pval_2</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Success_2</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > OR_3</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > LCL_3</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > UCL_3</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Pval_3</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Success_3</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > OR_4</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > LCL_4</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > UCL_4</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Pval_4</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Success_4</ th >
< th data-quarto-table-cell-role = "th" style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" > Overall_Success</ th >
</ tr >
</ thead >
< tbody >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.936</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.565</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.55</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.797</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.868</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.601</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.255</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.453</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.036</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.767</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.398</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.818</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.891</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.687</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.157</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.387</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 2</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.87</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.519</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.459</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.598</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.757</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.525</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.092</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.136</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.745</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.551</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.007</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.056</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.721</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.555</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.936</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.014</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 3</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.59</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.35</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.996</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.048</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.555</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.382</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.806</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.002</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.676</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.5</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.916</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.011</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.686</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.529</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.89</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.005</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 4</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.652</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.385</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.103</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.111</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.671</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.461</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.976</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.037</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.725</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.533</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.988</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.042</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.75</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.576</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.976</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.032</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 5</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.674</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.398</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.142</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.143</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.763</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.526</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.108</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.155</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.835</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.617</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.132</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.246</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.764</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.587</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.994</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.045</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 6</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.525</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.309</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.892</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.017</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.622</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.427</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.907</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.014</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.668</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.491</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.909</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.01</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.625</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.479</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.815</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.001</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 7</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.742</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.433</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.269</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.275</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.769</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.525</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.125</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.175</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.76</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.558</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.037</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.083</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.719</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.551</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.938</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.015</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 8</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.661</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.394</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.108</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.116</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.437</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.301</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.632</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.535</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.397</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.721</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.551</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.425</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.714</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 9</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.288</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.76</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 2.183</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.348</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.113</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.769</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.612</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.571</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.87</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.645</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.173</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.361</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.771</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.596</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.999</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.049</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 10</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.783</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.466</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.316</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.356</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.701</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.484</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.015</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.06</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.655</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.482</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.89</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.007</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.614</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.472</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.798</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 11</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.577</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.344</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.968</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.037</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.639</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.444</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.921</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.016</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.56</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.415</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.754</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.577</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.446</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.748</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 12</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.538</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.315</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.919</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.023</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.629</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.434</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.913</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.015</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.576</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.426</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.78</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.561</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.431</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.731</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 13</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.79</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.474</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.315</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.364</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.763</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.531</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.095</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.142</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.789</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.588</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.06</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.115</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.791</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.611</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.025</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.076</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 14</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.535</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.318</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.902</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.019</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.69</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.477</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.999</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.049</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.583</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.43</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.792</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.001</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.621</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.477</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.809</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 15</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.695</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.419</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.152</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.158</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.744</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.516</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.073</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.114</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.73</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.541</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.985</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.04</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.64</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.493</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.83</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.001</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 16</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.116</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.657</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.896</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.685</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.763</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.526</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.108</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.155</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.69</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.509</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.935</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.017</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.69</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.532</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.896</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.005</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 17</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.533</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.32</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.886</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.015</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.585</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.407</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.839</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.004</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.679</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.504</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.913</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.011</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.622</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.48</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.806</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 18</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.613</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.364</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.033</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.066</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.692</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.478</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.05</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.78</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.577</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.055</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.107</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.705</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.543</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.914</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.008</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 19</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.841</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.502</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.409</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.511</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.768</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.531</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1.11</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.16</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.685</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.506</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.927</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.014</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.665</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.511</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.864</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.002</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
< tr >
< td style = "text-align: center; font-weight: bold; color: rgba(102, 102, 102, 255) !important;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 20</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.275</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.159</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.476</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.449</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.31</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.651</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.498</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.369</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.672</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.498</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.384</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0.646</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 0</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
< td style = "text-align: center;" >< span style = " color: rgba(119, 119, 119, 255) !important;" > 1</ span ></ td >
</ tr >
</ tbody >< tfoot >
< tr >
< td style = "text-align: center; padding: 0;" >< span style = "text-decoration: underline;" > Abbreviations: </ span ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
</ tr >
< tr >
< td style = "text-align: center; padding: 0;" >< sup ></ sup > TrialNum: Trial Number | OR: Odds Ratio | LCL: Lower Confidence Level | UCL: Upper Confidence Level | Pval: P-value</ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
< td style = "text-align: center;" ></ td >
</ tr >
</ tfoot >
</ table >
</ div >
------------------------------------------------------------------------
# Statistical Environment
------------------------------------------------------------------------
The analyses were run on:
------------------------------------------------------------------------
``` r
si <- sessionInfo ()
print (si, RNG = TRUE , locale = TRUE )
#> R version 4.5.0 (2025-04-11)
#> Platform: aarch64-apple-darwin20
#> Running under: macOS Sequoia 15.6.1
#>
#> Matrix products: default
#> BLAS: /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRblas.0.dylib
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.1
#>
#> Random number generation:
#> RNG: L'Ecuyer-CMRG
#> Normal: Inversion
#> Sample: Rejection
#>
#> locale:
#> [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#>
#> time zone: America/New_York
#> tzcode source: internal
#>
#> attached base packages:
#> [1] splines grid stats4 parallel stats graphics grDevices
#> [8] utils datasets methods base
#>
#> other attached packages:
#> [1] cli_3.6.5 texPreview_2.1.0 tinytex_0.57
#> [4] rmarkdown_2.29 brms_2.22.0 bootImpute_1.2.2
#> [7] knitr_1.50 boot_1.3-31 gtsummary_2.2.0
#> [10] reshape2_1.4.4 ProfileLikelihood_1.3 ImputeRobust_1.3-1
#> [13] gamlss_5.4-22 gamlss.dist_6.1-1 gamlss.data_6.0-6
#> [16] mvtnorm_1.3-3 performance_0.14.0 summarytools_1.1.4
#> [19] rpact_4.2.1 tidybayes_3.0.7 htmltools_0.5.8.1
#> [22] Statamarkdown_0.9.2 car_3.1-3 carData_3.0-5
#> [25] qqplotr_0.0.6 ggcorrplot_0.1.4.1 mitml_0.4-5
#> [28] pbmcapply_1.5.1 Amelia_1.8.3 Rcpp_1.0.14
#> [31] blogdown_1.21 doParallel_1.0.17 iterators_1.0.14
#> [34] foreach_1.5.2 lattice_0.22-7 bayesplot_1.12.0
#> [37] wesanderson_0.3.7 VIM_6.2.2 colorspace_2.1-1
#> [40] here_1.0.1 progress_1.2.3 loo_2.8.0
#> [43] mi_1.1 Matrix_1.7-3 broom_1.0.8
#> [46] yardstick_1.3.2 svglite_2.2.1 Cairo_1.6-2
#> [49] cowplot_1.1.3 mgcv_1.9-3 nlme_3.1-168
#> [52] xfun_0.52 broom.mixed_0.2.9.6 reticulate_1.42.0
#> [55] kableExtra_1.4.0 posterior_1.6.1 checkmate_2.3.2
#> [58] parallelly_1.45.0 miceFast_0.8.5 randomForest_4.7-1.2
#> [61] missForest_1.5 miceadds_3.17-44 quantreg_6.1
#> [64] SparseM_1.84-2 MCMCpack_1.7-1 MASS_7.3-65
#> [67] coda_0.19-4.1 latex2exp_0.9.6 rstan_2.32.7
#> [70] StanHeaders_2.32.10 lubridate_1.9.4 forcats_1.0.0
#> [73] stringr_1.5.1 dplyr_1.1.4 purrr_1.0.4
#> [76] readr_2.1.5 tibble_3.2.1 ggplot2_3.5.2
#> [79] tidyverse_2.0.0 ggtext_0.1.2 concurve_2.7.7
#> [82] showtext_0.9-7 showtextdb_3.0 sysfonts_0.8.9
#> [85] future.apply_1.11.3 future_1.58.0 tidyr_1.3.1
#> [88] magrittr_2.0.3 mice_3.18.0 rms_8.0-0
#> [91] Hmisc_5.2-3
#>
#> loaded via a namespace (and not attached):
#> [1] dichromat_2.0-0.1 nnet_7.3-20 TH.data_1.1-3
#> [4] vctrs_0.6.5 digest_0.6.37 png_0.1-8
#> [7] shape_1.4.6.1 proxy_0.4-27 magick_2.8.6
#> [10] fontLiberation_0.1.0 withr_3.0.2 ggpubr_0.6.0
#> [13] survival_3.8-3 doRNG_1.8.6.2 emmeans_1.11.1
#> [16] MatrixModels_0.5-4 systemfonts_1.2.3 ragg_1.4.0
#> [19] zoo_1.8-14 V8_6.0.4 ggdist_3.3.3
#> [22] DEoptimR_1.1-3-1 Formula_1.2-5 prettyunits_1.2.0
#> [25] rematch2_2.1.2 httr_1.4.7 rstatix_0.7.2
#> [28] globals_0.18.0 rstudioapi_0.17.1 extremevalues_2.4.1
#> [31] pan_1.9 generics_0.1.4 base64enc_0.1-3
#> [34] curl_6.2.3 mitools_2.4 desc_1.4.3
#> [37] xtable_1.8-4 svUnit_1.0.6 pracma_2.4.4
#> [40] evaluate_1.0.3 hms_1.1.3 glmnet_4.1-9
#> [43] lmtest_0.9-40 robustbase_0.99-4-1 matrixStats_1.5.0
#> [46] svgPanZoom_0.3.4 class_7.3-23 pillar_1.10.2
#> [49] caTools_1.18.3 compiler_4.5.0 stringi_1.8.7
#> [52] jomo_2.7-6 minqa_1.2.8 plyr_1.8.9
#> [55] crayon_1.5.3 abind_1.4-8 metadat_1.4-0
#> [58] sp_2.2-0 mathjaxr_1.8-0 rapportools_1.2
#> [61] twosamples_2.0.1 sandwich_3.1-1 whisker_0.4.1
#> [64] codetools_0.2-20 multcomp_1.4-28 textshaping_1.0.1
#> [67] bcaboot_0.2-3 openssl_2.3.3 flextable_0.9.9
#> [70] QuickJSR_1.7.0 e1071_1.7-16 gridtext_0.1.5
#> [73] lme4_1.1-37 fs_1.6.6 itertools_0.1-3
#> [76] listenv_0.9.1 Rdpack_2.6.4 pkgbuild_1.4.8
#> [79] estimability_1.5.1 ggsignif_0.6.4 tzdb_0.5.0
#> [82] pkgconfig_2.0.3 tools_4.5.0 rbibutils_2.3
#> [85] viridisLite_0.4.2 DBI_1.2.3 numDeriv_2016.8-1.1
#> [88] fastmap_1.2.0 scales_1.4.0 officer_0.6.10
#> [91] opdisDownsampling_1.0.1 insight_1.3.0 rpart_4.1.24
#> [94] farver_2.1.2 reformulas_0.4.1 survminer_0.5.0
#> [97] yaml_2.3.10 foreign_0.8-90 lifecycle_1.0.4
#> [100] askpass_1.2.1 backports_1.5.0 Brobdingnag_1.2-9
#> [103] timechange_0.3.0 gtable_0.3.6 arrayhelpers_1.1-0
#> [106] metafor_4.8-0 jsonlite_2.0.0 bitops_1.0-9
#> [109] qqconf_1.3.2 zip_2.3.3 ranger_0.17.0
#> [112] RcppParallel_5.1.10 polspline_1.1.25 bridgesampling_1.1-2
#> [115] survMisc_0.5.6 distributional_0.5.0 pander_0.6.6
#> [118] details_0.4.0 KMsurv_0.1-6 rappdirs_0.3.3
#> [121] glue_1.8.0 tcltk_4.5.0 gdtools_0.4.2
#> [124] rprojroot_2.0.4 mcmc_0.9-8 gridExtra_2.3
#> [127] R6_2.6.1 arm_1.14-4 labeling_0.4.3
#> [130] km.ci_0.5-6 vcd_1.4-13 clipr_0.8.0
#> [133] cluster_2.1.8.1 rngtools_1.5.2 nloptr_2.2.1
#> [136] rstantools_2.4.0 tidyselect_1.2.1 htmlTable_2.4.3
#> [139] tensorA_0.36.2.1 xml2_1.3.8 inline_0.3.21
#> [142] fontBitstreamVera_0.1.1 furrr_0.3.1 laeken_0.5.3
#> [145] pryr_0.1.6 fontquiver_0.2.1 data.table_1.17.4
#> [148] htmlwidgets_1.6.4 RColorBrewer_1.1-3 rlang_1.1.6
#> [151] uuid_1.2-1
```
------------------------------------------------------------------------
# Article Citation