Is 3dLME appropriate for my data?

I am wondering if a voxel-wise linear mixed-effects model via 3dLME is appropriate for my dissertation dataset.

I want to examine how response to uncertain threat might vary as a function of trauma symptom severity (PCL-5). I am using an uncertain picture task that examines valence (neutral, negative) and predictability (predictable, unpredictable), for a total of 4 within-subject conditions (predictable-neutral, unpredictable-negative, etc.). I also want to control for age and sex. I think that I could use 3dLME with valence (2) and predictability (2) as within-subjects factors, age and sex as between-subjects factors, and PCL-5 scores as a within-subject quantitative variable.

Does this seem appropriate? I read through the Chen 2013 paper but I still can’t quite figure out if this fits or not. The other option I considered was a hierarchical linear regression analysis.

Thanks,
Ken

Ken,

Since you have a within-subject covariate (PCL-5), 3dLME is the way to go. One subtlety is whether PCL-5 differs between the levels of all the factors (including both between- and within-factors).

I am beginning to write the script for modeling Valence and Predictability as within-subjects factors, Age and Sex as between-subjects factors, and PCL-5 as a within-subjects quantitative variable (or would PCL-5 be a between-subjects factor if it is a measure of PTSD symptoms that is only measured once?). Below is a sketch of that script. The examples on https://afni.nimh.nih.gov/pub/dist/doc/program_help/3dLME.html don’t quite align with what I want to look at, so I am not sure what -model should look like, if I need to center my qVars, and if I need to spell out each glt. Any thoughts or advice?

3dLME -prefix unc_cl_test -jobs 1
-model “ValencePredictPCL5+Age+Sex”
-qVars “Age,Sex,PCL5”
-qVarCenters “”
-ranEff ‘~1’
-SS_type 3
-num_glt
-gltLabel 1
-dataTable
Subj Valence Predict Age Sex PCL5 InputFile
102_day1 neg p 49.3 m 14 /102_day1/unc_bl_results_peak/Pneg_block+tlrc
102_day1 neu p 49.3 m 14 /102_day1/unc_bl_results_peak/Pneu_block+tlrc
102_day1 neg u 49.3 m 14 /102_day1/unc_bl_results_peak/Uneg_block+tlrc
102_day1 neu u 49.3 m 14 /102_day1/unc_bl_results_peak/Uneg_block+tlrc
104_day1 neg p 24.8 f 35 /104_day1/unc_bl_results_peak/Pneg_block+tlrc
104_day1 neu p 24.8 f 35 /104_day1/unc_bl_results_peak/Pneu_block+tlrc
104_day1 neg u 24.8 f 35 /104_day1/unc_bl_results_peak/Uneg_block+tlrc
104_day1 neu u 24.8 f 35 /104_day1/unc_bl_results_peak/Uneg_block+tlrc
109_day1 neg p 21.7 f 46 /109_day1/unc_bl_results_peak/Pneg_block+tlrc
109_day1 neu p 21.7 f 46 /109_day1/unc_bl_results_peak/Pneu_block+tlrc
109_day1 neg u 21.7 f 46 /109_day1/unc_bl_results_peak/Uneg_block+tlrc
109_day1 neu u 21.7 f 46 /109_day1/unc_bl_results_peak/Uneg_block+tlrc
111_day1 neg p 25.6 m 49 /111_day1/unc_bl_results_peak/Pneg_block+tlrc
111_day1 neu p 25.6 m 49 /111_day1/unc_bl_results_peak/Pneu_block+tlrc
111_day1 neg u 25.6 m 49 /111_day1/unc_bl_results_peak/Uneg_block+tlrc
111_day1 neu u 25.6 m 49 /111_day1/unc_bl_results_peak/Uneg_block+tlrc
119_day1 neg p 44.6 f 26 /119_day1/unc_bl_results_peak/Pneg_block+tlrc
119_day1 neu p 44.6 f 26 /119_day1/unc_bl_results_peak/Pneu_block+tlrc
119_day1 neg u 44.6 f 26 /119_day1/unc_bl_results_peak/Uneg_block+tlrc
119_day1 neu u 44.6 f 26 /119_day1/unc_bl_results_peak/Uneg_block+tlrc

-model “ValencePredictPCL5+Age+Sex”

Depending on your research hypothesis, the above model might be fine. Or alternatively, you may try

-model “SexValencePredict*PCL5+Age”

-qVars “Age,Sex,PCL5”

Sex is not a quantitative variable, so remove from the above line.

-qVarCenters “”

Does the average PCL5 values varies between the two valences and between the two Predict levels? If so, you may center within each level separately, and then set

-qVarCenters “0,0”

If not, remove the option -qVarCenters and let the program center around the overall average of PCL5.

-ranEff ‘~1’

You want to account the random-slope effect of Age. So, change it to

-ranEff ‘~1+Age’

Thanks so much! That is very helpful.

I saw in a different post that 3dLME will run the main effects and interactions, but the user has to specify all of the follow-up tests. Does that include looking at direct comparisons of the main effects? For instance, would the following follow-ups via glt be appropriate if I wanted to know look at all of the main effects and interactions with and without trauma severity (PCL5; see script below)?

Also, I am a little confused about glf. The description in the help page of glfCode makes it seem like it is typically used for testing the main effects and interaction -but isn’t that what 3dLME is already doing?

Please let me know if you have any questions. Thanks again for your time.

3dLME -prefix unc_cl_test
-jobs 1
-model “ValencePredictPCL5+Age+Sex”
-qVars “Age,PCL5”
-ranEff ‘~1+Age’
-SS_type 3
-num_glt 14
-gltLabel 1 ‘neg-neu’ -gltCode 1 ‘Valence : 1neg - 1neu’
-gltLabel 2 ‘u-p’ -gltCode 2 ‘Predict : 1u - 1p’
-gltLabel 3 ‘Uneg-Uneu’ -gltCode 3 ‘Valence : 1neg - 1neu Predict : 1u’
-gltLabel 4 ‘Pneg-Pneu’ -gltCode 4 'Valence : 1
neg - 1neu Predict : 1p’
-gltLabel 5 ‘Uneg-Pneg’ -gltCode 5 ‘Predict : 1u - 1p Valence : 1neg’
-gltLabel 6 ‘Uneu-Pneu’ -gltCode 6 'Predict : 1
u - 1p Valence : 1neu’
-gltLabel 7 ‘Uneg-Pneu’ -gltCode 7 ‘Predict : 1u - 1p Valence : 1neg - 1neu’
-gltLabel 8 ‘neg-neu_PCL5’ -gltCode 1 ‘Valence : 1neg - 1neu PCL5 :’
-gltLabel 9 ‘u-p_PCL5’ -gltCode 2 ‘Predict : 1u - 1p PCL5 :’
-gltLabel 10 ‘Uneg-Uneu_PCL5’ -gltCode 3 ‘Valence : 1neg - 1neu Predict : 1u PCL5 :’
-gltLabel 11 ‘Pneg-Pneu_PCL5’ -gltCode 4 'Valence : 1
neg - 1neu Predict : 1p PCL5 :’
-gltLabel 12 ‘Uneg-Pneg_PCL5’ -gltCode 5 ‘Predict : 1u - 1p Valence : 1neg PCL5 :’
-gltLabel 13 ‘Uneu-Pneu_PCL5’ -gltCode 6 'Predict : 1
u - 1p Valence : 1neu PCL5 :’
-gltLabel 14 ‘Uneg-Pneu_PCL5’ -gltCode 7 ‘Predict : 1u - 1p Valence : 1neg - 1neu PCL5 :’
-dataTable
Subj Valence Predict Age Sex PCL5 InputFile

would the following follow-ups via glt be appropriate if I wanted to know look at all of the main effects
and interactions with and without trauma severity (PCL5; see script below)?

The question does not make sense to me. Once you incorporate a quantitative variable (e.g., PCL5 in your case), you can make inferences by pretending the absence of its effect. Instead, you can only control the effect of the quantitative variable at a particular value. For example, the first 7 post-hoc tests in your script are conducted with PCL5 fixed at the center value. I’m not so sure whether the next 7 post-hoc tests are really what you wanted, but they give you the difference of the PCL5 effects between the two levels of a factor.

I am a little confused about glf. The description in the help page of glfCode makes it seem like it is
typically used for testing the main effects and interaction -but isn’t that what 3dLME is already doing?

They are meant to provide an F-test for a subset of a main effect or interaction. For example, the typical main effect for a factor with 4 levels tests whether there are differences among all the 4 levels, but you can use -glf specification to test whether there are differences across, for example, the first 3 levels.

Thank you very much for that information. I think I was able to figure out what I needed to include in my final script. I have been trying to run a test version of my script (just on 3 subjects and without the glfs) for awhile and finally got it to read the input files. However, now I am receiving this error: Model Test Failed. Here is the output. Any thoughts about how to proceed? I also put the script below as well.

Package nlme loaded successfully!

Package phia loaded successfully!

++++++++++++++++++++++++++++++++++++++++++++++++++++
***** Summary information of data structure *****
3 subjects : 102_day1 104_day1 109_day1
12 response values
2 levels for factor Valence : neg neu
2 levels for factor Predict : p u
12 centered values for numeric variable Age : 17.36667 17.36667 17.36667 17.36667 -7.133333 -7.133333 -7.133333 -7.133333 -10.23333 -10.23333 -10.23333 -10.23333
2 levels for factor Sex : 0 1
12 centered values for numeric variable PCL5 : -17.66667 -17.66667 -17.66667 -17.66667 3.333333 3.333333 3.333333 3.333333 14.33333 14.33333 14.33333 14.33333
14 post hoc tests

Contingency tables of subject distributions among the categorical variables:

Tabulation of subjects against all categorical variables

Subj vs Valence:
          
           neg neu
  102_day1   2   2
  104_day1   2   2
  109_day1   2   2

Subj vs Predict:

       p u

102_day1 2 2
104_day1 2 2
109_day1 2 2

Subj vs Sex:
          
           0 1
  102_day1 4 0
  104_day1 0 4
  109_day1 0 4
***** End of data structure information *****
++++++++++++++++++++++++++++++++++++++++++++++++++++

Reading input files now...

Reading input files: Done!

If the program hangs here for more than, for example, half an hour,
kill the process because the model specification or the GLT coding
is likely inappropriate.

~~~~~~~~~~~~~~~~~~~ Model test failed  ~~~~~~~~~~~~~~~~~~~
Possible reasons:

0) Make sure that R packages nlme and phia have been installed. See the 3dLME
help documentation for more details.

1) Inappropriate model specification with options -model, or -qVars.

2) In correct specifications in general linear test coding with -gltCode.

3) Mistakes in data table. Check the data structure shown above, and verify
whether there are any inconsistencies.

4) Inconsistent variable names which are case sensitive. For example, factor
named Group in model specification and then listed as group in the table hader
would cause grief for 3dLME.


#!/bin/tcsh
module load pkgsrc/2018Q3
module load pkgsrc/gcc-base
module load /sharedapps/LS/psych_imaging/modulefiles/afni/08.28.2017
3dLME -prefix unc_cl_test -jobs 6 \
      -model "Valence*Predict*PCL5+Age+Sex" \
      -qVars "Age,PCL5"	\
      -ranEff "~1+Age" \
      -SS_type 3 \
      -num_glt 14 \
      -gltLabel 1 'neg-neu' -gltCode 1 'Valence : 1*neg -1*neu' \
      -gltLabel 2 'u-p' -gltCode 2 'Predict : 1*u -1*p'	\
      -gltLabel 3 'Uneg-Uneu' -gltCode 3 'Valence : 1*neg -1*neu Predict : 1*u'	\
      -gltLabel 4 'Pneg-Pneu' -gltCode 4 'Valence : 1*neg -1*neu Predict : 1*p'	\
      -gltLabel 5 'Uneg-Pneg' -gltCode 5 'Predict : 1*u -1*p Valence : 1*neg' \
      -gltLabel 6 'Uneu-Pneu' -gltCode 6 'Predict : 1*u -1*p Valence : 1*neu' \
      -gltLabel 7 'Uneg-Pneu' -gltCode 7 'Predict : 1*u -1*p Valence : 1*neg -1*neu' \
      -gltLabel 8 'neg-neu_PCL5' -gltCode 8 'Valence : 1*neg -1*neu PCL5 :' \
      -gltLabel 9 'u-p_PCL5' -gltCode 9 'Predict : 1*u -1*p PCL5 :' \
      -gltLabel 10 'Uneg-Uneu_PCL5' -gltCode 10 'Valence : 1*neg -1*neu Predict : 1*u PCL5 :' \
      -gltLabel 11 'Pneg-Pneu_PCL5' -gltCode 11 'Valence : 1*neg -1*neu Predict : 1*p PCL5 :' \
      -gltLabel 12 'Uneg-Pneg_PCL5' -gltCode 12 'Predict : 1*u -1*p Valence : 1*neg PCL5 :' \
      -gltLabel 13 'Uneu-Pneu_PCL5' -gltCode 13 'Predict : 1*u -1*p Valence : 1*neu PCL5 :' \
      -gltLabel 14 'Uneg-Pneu_PCL5' -gltCode 14 'Predict : 1*u -1*p Valence : 1*neg -1*neu PCL5 :' \
      -dataTable \
Subj	Valence	Predict	Age	Sex	PCL5	InputFile \
102_day1	neg	p	49.3	0	14	102_day1/unc_trl_results/peak/Pneg_cl+tlrc \
102_day1	neu	p	49.3	0	14	102_day1/unc_trl_results/peak/Pneu_cl+tlrc \
102_day1	neg	u	49.3	0	14	102_day1/unc_trl_results/peak/Uneg_cl+tlrc \
102_day1	neu	u	49.3	0	14	102_day1/unc_trl_results/peak/Uneu_cl+tlrc \
104_day1	neg	p	24.8	1	35	104_day1/unc_trl_results/peak/Pneg_cl+tlrc \
104_day1	neu	p	24.8	1	35	104_day1/unc_trl_results/peak/Pneu_cl+tlrc \
104_day1	neg	u	24.8	1	35	104_day1/unc_trl_results/peak/Uneg_cl+tlrc \
104_day1	neu	u	24.8	1	35	104_day1/unc_trl_results/peak/Uneu_cl+tlrc \
109_day1	neg	p	21.7	1	46	109_day1/unc_trl_results/peak/Pneg_cl+tlrc \
109_day1        neu  p      21.7 1      46    109_day1/unc_trl_results/peak/Pneu_cl+tlrc \
109_day1        neg	u      21.7 1      46    109_day1/unc_trl_results/peak/Uneg_cl+tlrc \
109_day1        neu  u      21.7 1      46    109_day1/unc_trl_results/peak/Uneu_cl+tlrc

I have been trying to run a test version of my script (just on 3 subjects and without the glfs) for awhile

The failure is most likely due to the fact you only fed the model with 3 subjects: not enough to estimate all the effects with such a meager amount of data.

That makes sense. I will try it out with more subjects. Thanks!

I created a table text file “table_unc_cl.txt” that contains all of my usable subjects. I called upon it in my script but there must be something wrong with the table text file - I keep receiving the error: “The content under -dataTable is not rectangular ! 5574 14”. I tried to use file_tool to find an error in the table but that command is not found. I created the text file using excel and saved it as a Text (Tab Delimited). Could that be the problem? Is there a better way to export the text file so that it is readable? Below is my update script and the table (table_unc_cl.txt).

Script:

#!/bin/tcsh
module load pkgsrc/2018Q3
module load pkgsrc/gcc-base
module load /sharedapps/LS/psych_imaging/modulefiles/afni/08.28.2017
3dLME -prefix unc_cl -jobs 12
-model “ValencePredictPCL5+Age+Sex+Drug_pos”
-qVars “Age,PCL5”
-ranEff “~1+Age”
-SS_type 3
-num_glt 14
-gltLabel 1 ‘neg-neu’ -gltCode 1 ‘Valence : 1neg -1neu’
-gltLabel 2 ‘u-p’ -gltCode 2 ‘Predict : 1u -1p’
-gltLabel 3 ‘Uneg-Uneu’ -gltCode 3 ‘Valence : 1neg -1neu Predict : 1u’
-gltLabel 4 ‘Pneg-Pneu’ -gltCode 4 'Valence : 1
neg -1neu Predict : 1p’
-gltLabel 5 ‘Uneg-Pneg’ -gltCode 5 ‘Predict : 1u -1p Valence : 1neg’
-gltLabel 6 ‘Uneu-Pneu’ -gltCode 6 'Predict : 1
u -1p Valence : 1neu’
-gltLabel 7 ‘Uneg-Pneu’ -gltCode 7 ‘Predict : 1u -1p Valence : 1neg -1neu’
-gltLabel 8 ‘neg-neu_PCL5’ -gltCode 8 ‘Valence : 1neg -1neu PCL5 :’
-gltLabel 9 ‘u-p_PCL5’ -gltCode 9 ‘Predict : 1u -1p PCL5 :’
-gltLabel 10 ‘Uneg-Uneu_PCL5’ -gltCode 10 ‘Valence : 1neg -1neu Predict : 1u PCL5 :’
-gltLabel 11 ‘Pneg-Pneu_PCL5’ -gltCode 11 'Valence : 1
neg -1neu Predict : 1p PCL5 :’
-gltLabel 12 ‘Uneg-Pneg_PCL5’ -gltCode 12 ‘Predict : 1u -1p Valence : 1neg PCL5 :’
-gltLabel 13 ‘Uneu-Pneu_PCL5’ -gltCode 13 'Predict : 1
u -1p Valence : 1neu PCL5 :’
-gltLabel 14 ‘Uneg-Pneu_PCL5’ -gltCode 14 ‘Predict : 1u -1p Valence : 1neg -1neu PCL5 :’
-num_glf 2
-glfLabel 1 ‘cond_valence’ -glfCode 1 ‘Valence : 1neg & 1neu’
-glfLabel 2 ‘cond_pred’ -glfCode 2 ‘Predict : 1u & 1p’
-dataTable @table_unc_cl.txt

table_unc_cl.txt:

Subj Valence Predict Sex Ethnicity Age IUS12 Drug_pos PCL5 PCL5_reexp PCL5_avd PCL5_neg PCL5_hyp InputFile
102_day1 neg p 0 1 49.3 0 14 9 1 3 1 102_day1/unc_trl_results/Pneg_cl+tlrc
102_day1 neu p 0 1 49.3 0 14 9 1 3 1 102_day1/unc_trl_results/Pneu_cl+tlrc
102_day1 neg u 0 1 49.3 0 14 9 1 3 1 102_day1/unc_trl_results/Uneg_cl+tlrc
102_day1 neu u 0 1 49.3 0 14 9 1 3 1 102_day1/unc_trl_results/Uneu_cl+tlrc
104_day1 neg p 1 1 24.8 49 0 35 5 6 13 11 104_day1/unc_trl_results/Pneg_cl+tlrc
104_day1 neu p 1 1 24.8 49 0 35 5 6 13 11 104_day1/unc_trl_results/Pneu_cl+tlrc
104_day1 neg u 1 1 24.8 49 0 35 5 6 13 11 104_day1/unc_trl_results/Uneg_cl+tlrc
104_day1 neu u 1 1 24.8 49 0 35 5 6 13 11 104_day1/unc_trl_results/Uneu_cl+tlrc
109_day1 neg p 1 1 21.7 33 1 46 12 6 15 13 109_day1/unc_trl_results/Pneg_cl+tlrc
109_day1 neu p 1 1 21.7 33 1 46 12 6 15 13 109_day1/unc_trl_results/Pneu_cl+tlrc
109_day1 neg u 1 1 21.7 33 1 46 12 6 15 13 109_day1/unc_trl_results/Uneg_cl+tlrc
109_day1 neu u 1 1 21.7 33 1 46 12 6 15 13 109_day1/unc_trl_results/Uneu_cl+tlrc
111_day1 neg p 0 1 25.6 39 0 49 17 3 18 11 111_day1/unc_trl_results/Pneg_cl+tlrc
111_day1 neu p 0 1 25.6 39 0 49 17 3 18 11 111_day1/unc_trl_results/Pneu_cl+tlrc
111_day1 neg u 0 1 25.6 39 0 49 17 3 18 11 111_day1/unc_trl_results/Uneg_cl+tlrc
111_day1 neu u 0 1 25.6 39 0 49 17 3 18 11 111_day1/unc_trl_results/Uneu_cl+tlrc
119_day1 neg p 1 1 44.6 51 0 26 9 2 6 9 119_day1/unc_trl_results/Pneg_cl+tlrc
119_day1 neu p 1 1 44.6 51 0 26 9 2 6 9 119_day1/unc_trl_results/Pneu_cl+tlrc
119_day1 neg u 1 1 44.6 51 0 26 9 2 6 9 119_day1/unc_trl_results/Uneg_cl+tlrc
119_day1 neu u 1 1 44.6 51 0 26 9 2 6 9 119_day1/unc_trl_results/Uneu_cl+tlrc
120_day1 neg p 0 1 44.9 27 1 27 7 2 8 10 120_day1/unc_trl_results/Pneg_cl+tlrc
120_day1 neu p 0 1 44.9 27 1 27 7 2 8 10 120_day1/unc_trl_results/Pneu_cl+tlrc
120_day1 neg u 0 1 44.9 27 1 27 7 2 8 10 120_day1/unc_trl_results/Uneg_cl+tlrc
120_day1 neu u 0 1 44.9 27 1 27 7 2 8 10 120_day1/unc_trl_results/Uneu_cl+tlrc
126_day1 neg p 1 1 27.9 31 0 33 16 6 3 8 126_day1/unc_trl_results/Pneg_cl+tlrc
126_day1 neu p 1 1 27.9 31 0 33 16 6 3 8 126_day1/unc_trl_results/Pneu_cl+tlrc
126_day1 neg u 1 1 27.9 31 0 33 16 6 3 8 126_day1/unc_trl_results/Uneg_cl+tlrc
126_day1 neu u 1 1 27.9 31 0 33 16 6 3 8 126_day1/unc_trl_results/Uneu_cl+tlrc
145_day1 neg p 0 1 36.3 46 0 41 8 2 16 15 145_day1/unc_trl_results/Pneg_cl+tlrc
145_day1 neu p 0 1 36.3 46 0 41 8 2 16 15 145_day1/unc_trl_results/Pneu_cl+tlrc
145_day1 neg u 0 1 36.3 46 0 41 8 2 16 15 145_day1/unc_trl_results/Uneg_cl+tlrc
145_day1 neu u 0 1 36.3 46 0 41 8 2 16 15 145_day1/unc_trl_results/Uneu_cl+tlrc
147_day1 neg p 0 1 32.2 32 0 35 12 6 8 9 147_day1/unc_trl_results/Pneg_cl+tlrc
147_day1 neu p 0 1 32.2 32 0 35 12 6 8 9 147_day1/unc_trl_results/Pneu_cl+tlrc
147_day1 neg u 0 1 32.2 32 0 35 12 6 8 9 147_day1/unc_trl_results/Uneg_cl+tlrc
147_day1 neu u 0 1 32.2 32 0 35 12 6 8 9 147_day1/unc_trl_results/Uneu_cl+tlrc
168_day1 neg p 1 1 55.3 32 1 13 5 2 0 6 168_day1/unc_trl_results/Pneg_cl+tlrc
168_day1 neu p 1 1 55.3 32 1 13 5 2 0 6 168_day1/unc_trl_results/Pneu_cl+tlrc
168_day1 neg u 1 1 55.3 32 1 13 5 2 0 6 168_day1/unc_trl_results/Uneg_cl+tlrc
168_day1 neu u 1 1 55.3 32 1 13 5 2 0 6 168_day1/unc_trl_results/Uneu_cl+tlrc
183_day1 neg p 1 1 41.9 40 1 27 6 4 5 12 183_day1/unc_trl_results/Pneg_cl+tlrc
183_day1 neu p 1 1 41.9 40 1 27 6 4 5 12 183_day1/unc_trl_results/Pneu_cl+tlrc
183_day1 neg u 1 1 41.9 40 1 27 6 4 5 12 183_day1/unc_trl_results/Uneg_cl+tlrc
183_day1 neu u 1 1 41.9 40 1 27 6 4 5 12 183_day1/unc_trl_results/Uneu_cl+tlrc
187_day1 neg p 1 1 18.3 46 0 73 17 7 26 23 187_day1/unc_trl_results/Pneg_cl+tlrc
187_day1 neu p 1 1 18.3 46 0 73 17 7 26 23 187_day1/unc_trl_results/Pneu_cl+tlrc
187_day1 neg u 1 1 18.3 46 0 73 17 7 26 23 187_day1/unc_trl_results/Uneg_cl+tlrc
187_day1 neu u 1 1 18.3 46 0 73 17 7 26 23 187_day1/unc_trl_results/Uneu_cl+tlrc
201_day1 neg p 0 1 23.8 34 0 20 5 2 7 6 201_day1/unc_trl_results/Pneg_cl+tlrc
201_day1 neu p 0 1 23.8 34 0 20 5 2 7 6 201_day1/unc_trl_results/Pneu_cl+tlrc
201_day1 neg u 0 1 23.8 34 0 20 5 2 7 6 201_day1/unc_trl_results/Uneg_cl+tlrc
201_day1 neu u 0 1 23.8 34 0 20 5 2 7 6 201_day1/unc_trl_results/Uneu_cl+tlrc
203_day1 neg p 0 1 28.5 35 0 47 11 6 16 14 203_day1/unc_trl_results/Pneg_cl+tlrc
203_day1 neu p 0 1 28.5 35 0 47 11 6 16 14 203_day1/unc_trl_results/Pneu_cl+tlrc
203_day1 neg u 0 1 28.5 35 0 47 11 6 16 14 203_day1/unc_trl_results/Uneg_cl+tlrc
203_day1 neu u 0 1 28.5 35 0 47 11 6 16 14 203_day1/unc_trl_results/Uneu_cl+tlrc
207_day1 neg p 1 2 22.9 25 1 43 15 6 15 7 207_day1/unc_trl_results/Pneg_cl+tlrc
207_day1 neu p 1 2 22.9 25 1 43 15 6 15 7 207_day1/unc_trl_results/Pneu_cl+tlrc
207_day1 neg u 1 2 22.9 25 1 43 15 6 15 7 207_day1/unc_trl_results/Uneg_cl+tlrc
207_day1 neu u 1 2 22.9 25 1 43 15 6 15 7 207_day1/unc_trl_results/Uneu_cl+tlrc
210_day1 neg p 1 2 22.9 25 1 43 15 6 15 7 210_day1/unc_trl_results/Pneg_cl+tlrc
210_day1 neu p 1 2 22.9 25 1 43 15 6 15 7 210_day1/unc_trl_results/Pneu_cl+tlrc
210_day1 neg u 1 2 22.9 25 1 43 15 6 15 7 210_day1/unc_trl_results/Uneg_cl+tlrc
210_day1 neu u 1 2 22.9 25 1 43 15 6 15 7 210_day1/unc_trl_results/Uneu_cl+tlrc
211_day1 neg p 0 2 24.7 28 0 58 12 4 24 18 211_day1/unc_trl_results/Pneg_cl+tlrc
211_day1 neu p 0 2 24.7 28 0 58 12 4 24 18 211_day1/unc_trl_results/Pneu_cl+tlrc
211_day1 neg u 0 2 24.7 28 0 58 12 4 24 18 211_day1/unc_trl_results/Uneg_cl+tlrc
211_day1 neu u 0 2 24.7 28 0 58 12 4 24 18 211_day1/unc_trl_results/Uneu_cl+tlrc
218_day1 neg p 1 1 36 33 1 45 9 6 17 13 218_day1/unc_trl_results/Pneg_cl+tlrc
218_day1 neu p 1 1 36 33 1 45 9 6 17 13 218_day1/unc_trl_results/Pneu_cl+tlrc
218_day1 neg u 1 1 36 33 1 45 9 6 17 13 218_day1/unc_trl_results/Uneg_cl+tlrc
218_day1 neu u 1 1 36 33 1 45 9 6 17 13 218_day1/unc_trl_results/Uneu_cl+tlrc
221_day1 neg p 0 2 21.5 35 1 36 5 5 12 14 221_day1/unc_trl_results/Pneg_cl+tlrc
221_day1 neu p 0 2 21.5 35 1 36 5 5 12 14 221_day1/unc_trl_results/Pneu_cl+tlrc
221_day1 neg u 0 2 21.5 35 1 36 5 5 12 14 221_day1/unc_trl_results/Uneg_cl+tlrc
221_day1 neu u 0 2 21.5 35 1 36 5 5 12 14 221_day1/unc_trl_results/Uneu_cl+tlrc
225_day1 neg p 1 1 20.2 50 0 45 13 3 16 13 225_day1/unc_trl_results/Pneg_cl+tlrc
225_day1 neu p 1 1 20.2 50 0 45 13 3 16 13 225_day1/unc_trl_results/Pneu_cl+tlrc
225_day1 neg u 1 1 20.2 50 0 45 13 3 16 13 225_day1/unc_trl_results/Uneg_cl+tlrc
225_day1 neu u 1 1 20.2 50 0 45 13 3 16 13 225_day1/unc_trl_results/Uneu_cl+tlrc
226_day1 neg p 1 1 26.9 13 0 15 4 2 2 7 226_day1/unc_trl_results/Pneg_cl+tlrc
226_day1 neu p 1 1 26.9 13 0 15 4 2 2 7 226_day1/unc_trl_results/Pneu_cl+tlrc
226_day1 neg u 1 1 26.9 13 0 15 4 2 2 7 226_day1/unc_trl_results/Uneg_cl+tlrc
226_day1 neu u 1 1 26.9 13 0 15 4 2 2 7 226_day1/unc_trl_results/Uneu_cl+tlrc
235_day1 neg p 1 1 19.2 41 0 50 11 7 21 11 235_day1/unc_trl_results/Pneg_cl+tlrc
235_day1 neu p 1 1 19.2 41 0 50 11 7 21 11 235_day1/unc_trl_results/Pneu_cl+tlrc
235_day1 neg u 1 1 19.2 41 0 50 11 7 21 11 235_day1/unc_trl_results/Uneg_cl+tlrc
235_day1 neu u 1 1 19.2 41 0 50 11 7 21 11 235_day1/unc_trl_results/Uneu_cl+tlrc
236_day1 neg p 1 1 19.3 45 0 37 6 4 14 13 236_day1/unc_trl_results/Pneg_cl+tlrc
236_day1 neu p 1 1 19.3 45 0 37 6 4 14 13 236_day1/unc_trl_results/Pneu_cl+tlrc
236_day1 neg u 1 1 19.3 45 0 37 6 4 14 13 236_day1/unc_trl_results/Uneg_cl+tlrc
236_day1 neu u 1 1 19.3 45 0 37 6 4 14 13 236_day1/unc_trl_results/Uneu_cl+tlrc
238_day1 neg p 1 1 37 0 238_day1/unc_trl_results/Pneg_cl+tlrc
238_day1 neu p 1 1 37 0 238_day1/unc_trl_results/Pneu_cl+tlrc
238_day1 neg u 1 1 37 0 238_day1/unc_trl_results/Uneg_cl+tlrc
238_day1 neu u 1 1 37 0 238_day1/unc_trl_results/Uneu_cl+tlrc
249_day1 neg p 0 1 39 28 1 10 2 0 1 7 249_day1/unc_trl_results/Pneg_cl+tlrc
249_day1 neu p 0 1 39 28 1 10 2 0 1 7 249_day1/unc_trl_results/Pneu_cl+tlrc
249_day1 neg u 0 1 39 28 1 10 2 0 1 7 249_day1/unc_trl_results/Uneg_cl+tlrc
249_day1 neu u 0 1 39 28 1 10 2 0 1 7 249_day1/unc_trl_results/Uneu_cl+tlrc
252_day1 neg p 1 1 33.9 33 1 54 19 6 16 13 252_day1/unc_trl_results/Pneg_cl+tlrc
252_day1 neu p 1 1 33.9 33 1 54 19 6 16 13 252_day1/unc_trl_results/Pneu_cl+tlrc
252_day1 neg u 1 1 33.9 33 1 54 19 6 16 13 252_day1/unc_trl_results/Uneg_cl+tlrc
252_day1 neu u 1 1 33.9 33 1 54 19 6 16 13 252_day1/unc_trl_results/Uneu_cl+tlrc
255_day1 neg p 1 1 40.4 56 0 0 0 0 0 0 255_day1/unc_trl_results/Pneg_cl+tlrc
255_day1 neu p 1 1 40.4 56 0 0 0 0 0 0 255_day1/unc_trl_results/Pneu_cl+tlrc
255_day1 neg u 1 1 40.4 56 0 0 0 0 0 0 255_day1/unc_trl_results/Uneg_cl+tlrc
255_day1 neu u 1 1 40.4 56 0 0 0 0 0 0 255_day1/unc_trl_results/Uneu_cl+tlrc
264_day1 neg p 1 1 32.9 27 0 17 5 3 1 8 264_day1/unc_trl_results/Pneg_cl+tlrc
264_day1 neu p 1 1 32.9 27 0 17 5 3 1 8 264_day1/unc_trl_results/Pneu_cl+tlrc
264_day1 neg u 1 1 32.9 27 0 17 5 3 1 8 264_day1/unc_trl_results/Uneg_cl+tlrc
264_day1 neu u 1 1 32.9 27 0 17 5 3 1 8 264_day1/unc_trl_results/Uneu_cl+tlrc
269_day1 neg p 0 1 28.9 38 0 45 12 4 16 13 269_day1/unc_trl_results/Pneg_cl+tlrc
269_day1 neu p 0 1 28.9 38 0 45 12 4 16 13 269_day1/unc_trl_results/Pneu_cl+tlrc
269_day1 neg u 0 1 28.9 38 0 45 12 4 16 13 269_day1/unc_trl_results/Uneg_cl+tlrc
269_day1 neu u 0 1 28.9 38 0 45 12 4 16 13 269_day1/unc_trl_results/Uneu_cl+tlrc
270_day1 neg p 0 1 25 35 0 41 11 6 14 10 270_day1/unc_trl_results/Pneg_cl+tlrc
270_day1 neu p 0 1 25 35 0 41 11 6 14 10 270_day1/unc_trl_results/Pneu_cl+tlrc
270_day1 neg u 0 1 25 35 0 41 11 6 14 10 270_day1/unc_trl_results/Uneg_cl+tlrc
270_day1 neu u 0 1 25 35 0 41 11 6 14 10 270_day1/unc_trl_results/Uneu_cl+tlrc
278_day1 neg p 0 1 34.3 0 49 9 8 16 16 278_day1/unc_trl_results/Pneg_cl+tlrc
278_day1 neu p 0 1 34.3 0 49 9 8 16 16 278_day1/unc_trl_results/Pneu_cl+tlrc
278_day1 neg u 0 1 34.3 0 49 9 8 16 16 278_day1/unc_trl_results/Uneg_cl+tlrc
278_day1 neu u 0 1 34.3 0 49 9 8 16 16 278_day1/unc_trl_results/Uneu_cl+tlrc
283_day1 neg p 1 1 24.6 28 0 36 14 4 10 8 283_day1/unc_trl_results/Pneg_cl+tlrc
283_day1 neu p 1 1 24.6 28 0 36 14 4 10 8 283_day1/unc_trl_results/Pneu_cl+tlrc
283_day1 neg u 1 1 24.6 28 0 36 14 4 10 8 283_day1/unc_trl_results/Uneg_cl+tlrc
283_day1 neu u 1 1 24.6 28 0 36 14 4 10 8 283_day1/unc_trl_results/Uneu_cl+tlrc
288_day1 neg p 1 3 59.4 0 288_day1/unc_trl_results/Pneg_cl+tlrc
288_day1 neu p 1 3 59.4 0 288_day1/unc_trl_results/Pneu_cl+tlrc
288_day1 neg u 1 3 59.4 0 288_day1/unc_trl_results/Uneg_cl+tlrc
288_day1 neu u 1 3 59.4 0 288_day1/unc_trl_results/Uneu_cl+tlrc
294_day1 neg p 0 1 39.4 39 0 40 12 8 9 11 294_day1/unc_trl_results/Pneg_cl+tlrc
294_day1 neu p 0 1 39.4 39 0 40 12 8 9 11 294_day1/unc_trl_results/Pneu_cl+tlrc
294_day1 neg u 0 1 39.4 39 0 40 12 8 9 11 294_day1/unc_trl_results/Uneg_cl+tlrc
294_day1 neu u 0 1 39.4 39 0 40 12 8 9 11 294_day1/unc_trl_results/Uneu_cl+tlrc
298_day1 neg p 0 3 21 33 1 57 16 8 15 18 298_day1/unc_trl_results/Pneg_cl+tlrc
298_day1 neu p 0 3 21 33 1 57 16 8 15 18 298_day1/unc_trl_results/Pneu_cl+tlrc
298_day1 neg u 0 3 21 33 1 57 16 8 15 18 298_day1/unc_trl_results/Uneg_cl+tlrc
298_day1 neu u 0 3 21 33 1 57 16 8 15 18 298_day1/unc_trl_results/Uneu_cl+tlrc
302_day1 neg p 0 1 24.3 23 0 1 0 0 1 0 302_day1/unc_trl_results/Pneg_cl+tlrc
302_day1 neu p 0 1 24.3 23 0 1 0 0 1 0 302_day1/unc_trl_results/Pneu_cl+tlrc
302_day1 neg u 0 1 24.3 23 0 1 0 0 1 0 302_day1/unc_trl_results/Uneg_cl+tlrc
302_day1 neu u 0 1 24.3 23 0 1 0 0 1 0 302_day1/unc_trl_results/Uneu_cl+tlrc
307_day1 neg p 1 2 27.9 30 0 20 7 3 5 5 307_day1/unc_trl_results/Pneg_cl+tlrc
307_day1 neu p 1 2 27.9 30 0 20 7 3 5 5 307_day1/unc_trl_results/Pneu_cl+tlrc
307_day1 neg u 1 2 27.9 30 0 20 7 3 5 5 307_day1/unc_trl_results/Uneg_cl+tlrc
307_day1 neu u 1 2 27.9 30 0 20 7 3 5 5 307_day1/unc_trl_results/Uneu_cl+tlrc
314_day1 neg p 0 1 30.3 32 1 13 5 3 1 4 314_day1/unc_trl_results/Pneg_cl+tlrc
314_day1 neu p 0 1 30.3 32 1 13 5 3 1 4 314_day1/unc_trl_results/Pneu_cl+tlrc
314_day1 neg u 0 1 30.3 32 1 13 5 3 1 4 314_day1/unc_trl_results/Uneg_cl+tlrc
314_day1 neu u 0 1 30.3 32 1 13 5 3 1 4 314_day1/unc_trl_results/Uneu_cl+tlrc
315_day1 neg p 1 1 37 28 0 19 6 2 3 8 315_day1/unc_trl_results/Pneg_cl+tlrc
315_day1 neu p 1 1 37 28 0 19 6 2 3 8 315_day1/unc_trl_results/Pneu_cl+tlrc
315_day1 neg u 1 1 37 28 0 19 6 2 3 8 315_day1/unc_trl_results/Uneg_cl+tlrc
315_day1 neu u 1 1 37 28 0 19 6 2 3 8 315_day1/unc_trl_results/Uneu_cl+tlrc
322_day1 neg p 1 1 30.9 31 0 1 1 0 0 0 322_day1/unc_trl_results/Pneg_cl+tlrc
322_day1 neu p 1 1 30.9 31 0 1 1 0 0 0 322_day1/unc_trl_results/Pneu_cl+tlrc
322_day1 neg u 1 1 30.9 31 0 1 1 0 0 0 322_day1/unc_trl_results/Uneg_cl+tlrc
322_day1 neu u 1 1 30.9 31 0 1 1 0 0 0 322_day1/unc_trl_results/Uneu_cl+tlrc
324_day1 neg p 0 2 41.3 32 1 8 2 0 0 6 324_day1/unc_trl_results/Pneg_cl+tlrc
324_day1 neu p 0 2 41.3 32 1 8 2 0 0 6 324_day1/unc_trl_results/Pneu_cl+tlrc
324_day1 neg u 0 2 41.3 32 1 8 2 0 0 6 324_day1/unc_trl_results/Uneg_cl+tlrc
324_day1 neu u 0 2 41.3 32 1 8 2 0 0 6 324_day1/unc_trl_results/Uneu_cl+tlrc
325_day1 neg p 0 1 35.3 18 1 5 0 0 1 4 325_day1/unc_trl_results/Pneg_cl+tlrc
325_day1 neu p 0 1 35.3 18 1 5 0 0 1 4 325_day1/unc_trl_results/Pneu_cl+tlrc
325_day1 neg u 0 1 35.3 18 1 5 0 0 1 4 325_day1/unc_trl_results/Uneg_cl+tlrc
325_day1 neu u 0 1 35.3 18 1 5 0 0 1 4 325_day1/unc_trl_results/Uneu_cl+tlrc
328_day1 neg p 1 1 41.7 1 40 10 4 14 12 328_day1/unc_trl_results/Pneg_cl+tlrc
328_day1 neu p 1 1 41.7 1 40 10 4 14 12 328_day1/unc_trl_results/Pneu_cl+tlrc
328_day1 neg u 1 1 41.7 1 40 10 4 14 12 328_day1/unc_trl_results/Uneg_cl+tlrc
328_day1 neu u 1 1 41.7 1 40 10 4 14 12 328_day1/unc_trl_results/Uneu_cl+tlrc
329_day1 neg p 0 2 21.3 18 0 39 12 3 16 8 329_day1/unc_trl_results/Pneg_cl+tlrc
329_day1 neu p 0 2 21.3 18 0 39 12 3 16 8 329_day1/unc_trl_results/Pneu_cl+tlrc
329_day1 neg u 0 2 21.3 18 0 39 12 3 16 8 329_day1/unc_trl_results/Uneg_cl+tlrc
329_day1 neu u 0 2 21.3 18 0 39 12 3 16 8 329_day1/unc_trl_results/Uneu_cl+tlrc
342_day1 neg p 0 2 22.1 19 0 23 7 2 4 10 342_day1/unc_trl_results/Pneg_cl+tlrc
342_day1 neu p 0 2 22.1 19 0 23 7 2 4 10 342_day1/unc_trl_results/Pneu_cl+tlrc
342_day1 neg u 0 2 22.1 19 0 23 7 2 4 10 342_day1/unc_trl_results/Uneg_cl+tlrc
342_day1 neu u 0 2 22.1 19 0 23 7 2 4 10 342_day1/unc_trl_results/Uneu_cl+tlrc
344_day1 neg p 1 1 20.7 50 0 30 11 1 2 16 344_day1/unc_trl_results/Pneg_cl+tlrc
344_day1 neu p 1 1 20.7 50 0 30 11 1 2 16 344_day1/unc_trl_results/Pneu_cl+tlrc
344_day1 neg u 1 1 20.7 50 0 30 11 1 2 16 344_day1/unc_trl_results/Uneg_cl+tlrc
344_day1 neu u 1 1 20.7 50 0 30 11 1 2 16 344_day1/unc_trl_results/Uneu_cl+tlrc
347_day1 neg p 0 1 32.4 28 0 3 0 0 1 2 347_day1/unc_trl_results/Pneg_cl+tlrc
347_day1 neu p 0 1 32.4 28 0 3 0 0 1 2 347_day1/unc_trl_results/Pneu_cl+tlrc
347_day1 neg u 0 1 32.4 28 0 3 0 0 1 2 347_day1/unc_trl_results/Uneg_cl+tlrc
347_day1 neu u 0 1 32.4 28 0 3 0 0 1 2 347_day1/unc_trl_results/Uneu_cl+tlrc
348_day1 neg p 0 1 21.1 28 0 30 4 6 14 6 348_day1/unc_trl_results/Pneg_cl+tlrc
348_day1 neu p 0 1 21.1 28 0 30 4 6 14 6 348_day1/unc_trl_results/Pneu_cl+tlrc
348_day1 neg u 0 1 21.1 28 0 30 4 6 14 6 348_day1/unc_trl_results/Uneg_cl+tlrc
348_day1 neu u 0 1 21.1 28 0 30 4 6 14 6 348_day1/unc_trl_results/Uneu_cl+tlrc
353_day1 neg p 1 1 57.9 29 1 8 4 1 0 3 353_day1/unc_trl_results/Pneg_cl+tlrc
353_day1 neu p 1 1 57.9 29 1 8 4 1 0 3 353_day1/unc_trl_results/Pneu_cl+tlrc
353_day1 neg u 1 1 57.9 29 1 8 4 1 0 3 353_day1/unc_trl_results/Uneg_cl+tlrc
353_day1 neu u 1 1 57.9 29 1 8 4 1 0 3 353_day1/unc_trl_results/Uneu_cl+tlrc
364_day1 neg p 1 1 38.6 30 0 29 6 5 7 11 364_day1/unc_trl_results/Pneg_cl+tlrc
364_day1 neu p 1 1 38.6 30 0 29 6 5 7 11 364_day1/unc_trl_results/Pneu_cl+tlrc
364_day1 neg u 1 1 38.6 30 0 29 6 5 7 11 364_day1/unc_trl_results/Uneg_cl+tlrc
364_day1 neu u 1 1 38.6 30 0 29 6 5 7 11 364_day1/unc_trl_results/Uneu_cl+tlrc
387_day1 neg p 1 1 32.6 20 0 20 9 1 7 3 387_day1/unc_trl_results/Pneg_cl+tlrc
387_day1 neu p 1 1 32.6 20 0 20 9 1 7 3 387_day1/unc_trl_results/Pneu_cl+tlrc
387_day1 neg u 1 1 32.6 20 0 20 9 1 7 3 387_day1/unc_trl_results/Uneg_cl+tlrc
387_day1 neu u 1 1 32.6 20 0 20 9 1 7 3 387_day1/unc_trl_results/Uneu_cl+tlrc
393_day1 neg p 1 1 35.6 33 0 33 11 5 5 12 393_day1/unc_trl_results/Pneg_cl+tlrc
393_day1 neu p 1 1 35.6 33 0 33 11 5 5 12 393_day1/unc_trl_results/Pneu_cl+tlrc
393_day1 neg u 1 1 35.6 33 0 33 11 5 5 12 393_day1/unc_trl_results/Uneg_cl+tlrc
393_day1 neu u 1 1 35.6 33 0 33 11 5 5 12 393_day1/unc_trl_results/Uneu_cl+tlrc
410_day1 neg p 0 1 42.6 26 1 22 5 2 7 8 410_day1/unc_trl_results/Pneg_cl+tlrc
410_day1 neu p 0 1 42.6 26 1 22 5 2 7 8 410_day1/unc_trl_results/Pneu_cl+tlrc
410_day1 neg u 0 1 42.6 26 1 22 5 2 7 8 410_day1/unc_trl_results/Uneg_cl+tlrc
410_day1 neu u 0 1 42.6 26 1 22 5 2 7 8 410_day1/unc_trl_results/Uneu_cl+tlrc
423_day1 neg p 0 1 29 21 1 19 5 0 9 5 423_day1/unc_trl_results/Pneg_cl+tlrc
423_day1 neu p 0 1 29 21 1 19 5 0 9 5 423_day1/unc_trl_results/Pneu_cl+tlrc
423_day1 neg u 0 1 29 21 1 19 5 0 9 5 423_day1/unc_trl_results/Uneg_cl+tlrc
423_day1 neu u 0 1 29 21 1 19 5 0 9 5 423_day1/unc_trl_results/Uneu_cl+tlrc
440_day1 neg p 0 1 49.6 23 0 20 6 4 2 8 440_day1/unc_trl_results/Pneg_cl+tlrc
440_day1 neu p 0 1 49.6 23 0 20 6 4 2 8 440_day1/unc_trl_results/Pneu_cl+tlrc
440_day1 neg u 0 1 49.6 23 0 20 6 4 2 8 440_day1/unc_trl_results/Uneg_cl+tlrc
440_day1 neu u 0 1 49.6 23 0 20 6 4 2 8 440_day1/unc_trl_results/Uneu_cl+tlrc
442_day1 neg p 1 1 36 36 0 18 5 1 4 8 442_day1/unc_trl_results/Pneg_cl+tlrc
442_day1 neu p 1 1 36 36 0 18 5 1 4 8 442_day1/unc_trl_results/Pneu_cl+tlrc
442_day1 neg u 1 1 36 36 0 18 5 1 4 8 442_day1/unc_trl_results/Uneg_cl+tlrc
442_day1 neu u 1 1 36 36 0 18 5 1 4 8 442_day1/unc_trl_results/Uneu_cl+tlrc
460_day1 neg p 0 1 38.9 460_day1/unc_trl_results/Pneg_cl+tlrc
460_day1 neu p 0 1 38.9 460_day1/unc_trl_results/Pneu_cl+tlrc
460_day1 neg u 0 1 38.9 460_day1/unc_trl_results/Uneg_cl+tlrc
460_day1 neu u 0 1 38.9 460_day1/unc_trl_results/Uneu_cl+tlrc
480_day1 neg p 1 1 37 20 0 9 2 3 3 1 480_day1/unc_trl_results/Pneg_cl+tlrc
480_day1 neu p 1 1 37 20 0 9 2 3 3 1 480_day1/unc_trl_results/Pneu_cl+tlrc
480_day1 neg u 1 1 37 20 0 9 2 3 3 1 480_day1/unc_trl_results/Uneg_cl+tlrc
480_day1 neu u 1 1 37 20 0 9 2 3 3 1 480_day1/unc_trl_results/Uneu_cl+tlrc
487_day1 neg p 1 1 25.7 30 0 20 7 2 4 7 487_day1/unc_trl_results/Pneg_cl+tlrc
487_day1 neu p 1 1 25.7 30 0 20 7 2 4 7 487_day1/unc_trl_results/Pneu_cl+tlrc
487_day1 neg u 1 1 25.7 30 0 20 7 2 4 7 487_day1/unc_trl_results/Uneg_cl+tlrc
487_day1 neu u 1 1 25.7 30 0 20 7 2 4 7 487_day1/unc_trl_results/Uneu_cl+tlrc
489_day1 neg p 1 1 51.6 40 1 34 15 4 9 6 489_day1/unc_trl_results/Pneg_cl+tlrc
489_day1 neu p 1 1 51.6 40 1 34 15 4 9 6 489_day1/unc_trl_results/Pneu_cl+tlrc
489_day1 neg u 1 1 51.6 40 1 34 15 4 9 6 489_day1/unc_trl_results/Uneg_cl+tlrc
489_day1 neu u 1 1 51.6 40 1 34 15 4 9 6 489_day1/unc_trl_results/Uneu_cl+tlrc
496_day1 neg p 1 1 43.7 54 0 60 15 6 25 14 496_day1/unc_trl_results/Pneg_cl+tlrc
496_day1 neu p 1 1 43.7 54 0 60 15 6 25 14 496_day1/unc_trl_results/Pneu_cl+tlrc
496_day1 neg u 1 1 43.7 54 0 60 15 6 25 14 496_day1/unc_trl_results/Uneg_cl+tlrc
496_day1 neu u 1 1 43.7 54 0 60 15 6 25 14 496_day1/unc_trl_results/Uneu_cl+tlrc
497_day1 neg p 1 1 41.5 41 0 32 7 4 11 10 497_day1/unc_trl_results/Pneg_cl+tlrc
497_day1 neu p 1 1 41.5 41 0 32 7 4 11 10 497_day1/unc_trl_results/Pneu_cl+tlrc
497_day1 neg u 1 1 41.5 41 0 32 7 4 11 10 497_day1/unc_trl_results/Uneg_cl+tlrc
497_day1 neu u 1 1 41.5 41 0 32 7 4 11 10 497_day1/unc_trl_results/Uneu_cl+tlrc
500_day1 neg p 1 1 22.3 27 0 2 0 0 0 2 500_day1/unc_trl_results/Pneg_cl+tlrc
500_day1 neu p 1 1 22.3 27 0 2 0 0 0 2 500_day1/unc_trl_results/Pneu_cl+tlrc
500_day1 neg u 1 1 22.3 27 0 2 0 0 0 2 500_day1/unc_trl_results/Uneg_cl+tlrc
500_day1 neu u 1 1 22.3 27 0 2 0 0 0 2 500_day1/unc_trl_results/Uneu_cl+tlrc
506_day1 neg p 0 1 31.9 47 1 39 13 5 10 11 506_day1/unc_trl_results/Pneg_cl+tlrc
506_day1 neu p 0 1 31.9 47 1 39 13 5 10 11 506_day1/unc_trl_results/Pneu_cl+tlrc
506_day1 neg u 0 1 31.9 47 1 39 13 5 10 11 506_day1/unc_trl_results/Uneg_cl+tlrc
506_day1 neu u 0 1 31.9 47 1 39 13 5 10 11 506_day1/unc_trl_results/Uneu_cl+tlrc
512_day1 neg p 0 1 22.9 37 0 18 12 5 1 0 512_day1/unc_trl_results/Pneg_cl+tlrc
512_day1 neu p 0 1 22.9 37 0 18 12 5 1 0 512_day1/unc_trl_results/Pneu_cl+tlrc
512_day1 neg u 0 1 22.9 37 0 18 12 5 1 0 512_day1/unc_trl_results/Uneg_cl+tlrc
512_day1 neu u 0 1 22.9 37 0 18 12 5 1 0 512_day1/unc_trl_results/Uneu_cl+tlrc
513_day1 neg p 1 1 32.1 26 1 52 10 6 19 17 513_day1/unc_trl_results/Pneg_cl+tlrc
513_day1 neu p 1 1 32.1 26 1 52 10 6 19 17 513_day1/unc_trl_results/Pneu_cl+tlrc
513_day1 neg u 1 1 32.1 26 1 52 10 6 19 17 513_day1/unc_trl_results/Uneg_cl+tlrc
513_day1 neu u 1 1 32.1 26 1 52 10 6 19 17 513_day1/unc_trl_results/Uneu_cl+tlrc
530_day1 neg p 1 1 27.5 24 0 8 5 2 1 0 530_day1/unc_trl_results/Pneg_cl+tlrc
530_day1 neu p 1 1 27.5 24 0 8 5 2 1 0 530_day1/unc_trl_results/Pneu_cl+tlrc
530_day1 neg u 1 1 27.5 24 0 8 5 2 1 0 530_day1/unc_trl_results/Uneg_cl+tlrc
530_day1 neu u 1 1 27.5 24 0 8 5 2 1 0 530_day1/unc_trl_results/Uneu_cl+tlrc
535_day1 neg p 0 2 22.8 24 0 22 5 2 7 8 535_day1/unc_trl_results/Pneg_cl+tlrc
535_day1 neu p 0 2 22.8 24 0 22 5 2 7 8 535_day1/unc_trl_results/Pneu_cl+tlrc
535_day1 neg u 0 2 22.8 24 0 22 5 2 7 8 535_day1/unc_trl_results/Uneg_cl+tlrc
535_day1 neu u 0 2 22.8 24 0 22 5 2 7 8 535_day1/unc_trl_results/Uneu_cl+tlrc
538_day1 neg p 1 1 27.6 34 0 15 9 2 0 4 538_day1/unc_trl_results/Pneg_cl+tlrc
538_day1 neu p 1 1 27.6 34 0 15 9 2 0 4 538_day1/unc_trl_results/Pneu_cl+tlrc
538_day1 neg u 1 1 27.6 34 0 15 9 2 0 4 538_day1/unc_trl_results/Uneg_cl+tlrc
538_day1 neu u 1 1 27.6 34 0 15 9 2 0 4 538_day1/unc_trl_results/Uneu_cl+tlrc
542_day1 neg p 0 1 21.9 27 0 22 6 3 5 8 542_day1/unc_trl_results/Pneg_cl+tlrc
542_day1 neu p 0 1 21.9 27 0 22 6 3 5 8 542_day1/unc_trl_results/Pneu_cl+tlrc
542_day1 neg u 0 1 21.9 27 0 22 6 3 5 8 542_day1/unc_trl_results/Uneg_cl+tlrc
542_day1 neu u 0 1 21.9 27 0 22 6 3 5 8 542_day1/unc_trl_results/Uneu_cl+tlrc
558_day1 neg p 0 2 47.2 17 0 2 0 0 0 2 558_day1/unc_trl_results/Pneg_cl+tlrc
558_day1 neu p 0 2 47.2 17 0 2 0 0 0 2 558_day1/unc_trl_results/Pneu_cl+tlrc
558_day1 neg u 0 2 47.2 17 0 2 0 0 0 2 558_day1/unc_trl_results/Uneg_cl+tlrc
558_day1 neu u 0 2 47.2 17 0 2 0 0 0 2 558_day1/unc_trl_results/Uneu_cl+tlrc
566_day1 neg p 1 1 29.8 15 0 6 5 0 1 0 566_day1/unc_trl_results/Pneg_cl+tlrc
566_day1 neu p 1 1 29.8 15 0 6 5 0 1 0 566_day1/unc_trl_results/Pneu_cl+tlrc
566_day1 neg u 1 1 29.8 15 0 6 5 0 1 0 566_day1/unc_trl_results/Uneg_cl+tlrc
566_day1 neu u 1 1 29.8 15 0 6 5 0 1 0 566_day1/unc_trl_results/Uneu_cl+tlrc
569_day1 neg p 1 1 19.9 40 0 29 13 4 6 6 569_day1/unc_trl_results/Pneg_cl+tlrc
569_day1 neu p 1 1 19.9 40 0 29 13 4 6 6 569_day1/unc_trl_results/Pneu_cl+tlrc
569_day1 neg u 1 1 19.9 40 0 29 13 4 6 6 569_day1/unc_trl_results/Uneg_cl+tlrc
569_day1 neu u 1 1 19.9 40 0 29 13 4 6 6 569_day1/unc_trl_results/Uneu_cl+tlrc
570_day1 neg p 0 1 19.3 12 0 26 6 2 9 9 570_day1/unc_trl_results/Pneg_cl+tlrc
570_day1 neu p 0 1 19.3 12 0 26 6 2 9 9 570_day1/unc_trl_results/Pneu_cl+tlrc
570_day1 neg u 0 1 19.3 12 0 26 6 2 9 9 570_day1/unc_trl_results/Uneg_cl+tlrc
570_day1 neu u 0 1 19.3 12 0 26 6 2 9 9 570_day1/unc_trl_results/Uneu_cl+tlrc
575_day1 neg p 1 1 29.1 30 0 16 5 4 0 7 575_day1/unc_trl_results/Pneg_cl+tlrc
575_day1 neu p 1 1 29.1 30 0 16 5 4 0 7 575_day1/unc_trl_results/Pneu_cl+tlrc
575_day1 neg u 1 1 29.1 30 0 16 5 4 0 7 575_day1/unc_trl_results/Uneg_cl+tlrc
575_day1 neu u 1 1 29.1 30 0 16 5 4 0 7 575_day1/unc_trl_results/Uneu_cl+tlrc
576_day1 neg p 1 1 31.4 31 1 20 4 4 1 11 576_day1/unc_trl_results/Pneg_cl+tlrc
576_day1 neu p 1 1 31.4 31 1 20 4 4 1 11 576_day1/unc_trl_results/Pneu_cl+tlrc
576_day1 neg u 1 1 31.4 31 1 20 4 4 1 11 576_day1/unc_trl_results/Uneg_cl+tlrc
576_day1 neu u 1 1 31.4 31 1 20 4 4 1 11 576_day1/unc_trl_results/Uneu_cl+tlrc
592_day1 neg p 1 1 32.8 0 52 12 5 21 14 592_day1/unc_trl_results/Pneg_cl+tlrc
592_day1 neu p 1 1 32.8 0 52 12 5 21 14 592_day1/unc_trl_results/Pneu_cl+tlrc
592_day1 neg u 1 1 32.8 0 52 12 5 21 14 592_day1/unc_trl_results/Uneg_cl+tlrc
592_day1 neu u 1 1 32.8 0 52 12 5 21 14 592_day1/unc_trl_results/Uneu_cl+tlrc
596_day1 neg p 0 1 22.4 34 1 19 3 2 6 8 596_day1/unc_trl_results/Pneg_cl+tlrc
596_day1 neu p 0 1 22.4 34 1 19 3 2 6 8 596_day1/unc_trl_results/Pneu_cl+tlrc
596_day1 neg u 0 1 22.4 34 1 19 3 2 6 8 596_day1/unc_trl_results/Uneg_cl+tlrc
596_day1 neu u 0 1 22.4 34 1 19 3 2 6 8 596_day1/unc_trl_results/Uneu_cl+tlrc
597_day1 neg p 1 1 39.8 31 1 15 4 2 3 6 597_day1/unc_trl_results/Pneg_cl+tlrc
597_day1 neu p 1 1 39.8 31 1 15 4 2 3 6 597_day1/unc_trl_results/Pneu_cl+tlrc
597_day1 neg u 1 1 39.8 31 1 15 4 2 3 6 597_day1/unc_trl_results/Uneg_cl+tlrc
597_day1 neu u 1 1 39.8 31 1 15 4 2 3 6 597_day1/unc_trl_results/Uneu_cl+tlrc
616_day1 neg p 1 1 45.5 25 0 38 9 5 11 13 616_day1/unc_trl_results/Pneg_cl+tlrc
616_day1 neu p 1 1 45.5 25 0 38 9 5 11 13 616_day1/unc_trl_results/Pneu_cl+tlrc
616_day1 neg u 1 1 45.5 25 0 38 9 5 11 13 616_day1/unc_trl_results/Uneg_cl+tlrc
616_day1 neu u 1 1 45.5 25 0 38 9 5 11 13 616_day1/unc_trl_results/Uneu_cl+tlrc
623_day1 neg p 1 1 39.4 34 1 44 12 6 12 14 623_day1/unc_trl_results/Pneg_cl+tlrc
623_day1 neu p 1 1 39.4 34 1 44 12 6 12 14 623_day1/unc_trl_results/Pneu_cl+tlrc
623_day1 neg u 1 1 39.4 34 1 44 12 6 12 14 623_day1/unc_trl_results/Uneg_cl+tlrc
623_day1 neu u 1 1 39.4 34 1 44 12 6 12 14 623_day1/unc_trl_results/Uneu_cl+tlrc
624_day1 neg p 1 1 37.3 22 0 71 20 8 28 15 624_day1/unc_trl_results/Pneg_cl+tlrc
624_day1 neu p 1 1 37.3 22 0 71 20 8 28 15 624_day1/unc_trl_results/Pneu_cl+tlrc
624_day1 neg u 1 1 37.3 22 0 71 20 8 28 15 624_day1/unc_trl_results/Uneg_cl+tlrc
624_day1 neu u 1 1 37.3 22 0 71 20 8 28 15 624_day1/unc_trl_results/Uneu_cl+tlrc
629_day1 neg p 0 1 31.9 32 0 6 2 0 1 3 629_day1/unc_trl_results/Pneg_cl+tlrc
629_day1 neu p 0 1 31.9 32 0 6 2 0 1 3 629_day1/unc_trl_results/Pneu_cl+tlrc
629_day1 neg u 0 1 31.9 32 0 6 2 0 1 3 629_day1/unc_trl_results/Uneg_cl+tlrc
629_day1 neu u 0 1 31.9 32 0 6 2 0 1 3 629_day1/unc_trl_results/Uneu_cl+tlrc
635_day1 neg p 1 1 23.5 16 0 30 8 4 4 14 635_day1/unc_trl_results/Pneg_cl+tlrc
635_day1 neu p 1 1 23.5 16 0 30 8 4 4 14 635_day1/unc_trl_results/Pneu_cl+tlrc
635_day1 neg u 1 1 23.5 16 0 30 8 4 4 14 635_day1/unc_trl_results/Uneg_cl+tlrc
635_day1 neu u 1 1 23.5 16 0 30 8 4 4 14 635_day1/unc_trl_results/Uneu_cl+tlrc
642_day1 neg p 0 1 24.8 31 0 10 3 4 0 3 642_day1/unc_trl_results/Pneg_cl+tlrc
642_day1 neu p 0 1 24.8 31 0 10 3 4 0 3 642_day1/unc_trl_results/Pneu_cl+tlrc
642_day1 neg u 0 1 24.8 31 0 10 3 4 0 3 642_day1/unc_trl_results/Uneg_cl+tlrc
642_day1 neu u 0 1 24.8 31 0 10 3 4 0 3 642_day1/unc_trl_results/Uneu_cl+tlrc
646_day1 neg p 0 1 22.2 38 0 8 1 4 0 3 646_day1/unc_trl_results/Pneg_cl+tlrc
646_day1 neu p 0 1 22.2 38 0 8 1 4 0 3 646_day1/unc_trl_results/Pneu_cl+tlrc
646_day1 neg u 0 1 22.2 38 0 8 1 4 0 3 646_day1/unc_trl_results/Uneg_cl+tlrc
646_day1 neu u 0 1 22.2 38 0 8 1 4 0 3 646_day1/unc_trl_results/Uneu_cl+tlrc
676_day1 neg p 1 1 33.7 26 0 5 3 1 1 0 676_day1/unc_trl_results/Pneg_cl+tlrc
676_day1 neu p 1 1 33.7 26 0 5 3 1 1 0 676_day1/unc_trl_results/Pneu_cl+tlrc
676_day1 neg u 1 1 33.7 26 0 5 3 1 1 0 676_day1/unc_trl_results/Uneg_cl+tlrc
676_day1 neu u 1 1 33.7 26 0 5 3 1 1 0 676_day1/unc_trl_results/Uneu_cl+tlrc
677_day1 neg p 0 1 18 26 0 6 0 1 2 3 677_day1/unc_trl_results/Pneg_cl+tlrc
677_day1 neu p 0 1 18 26 0 6 0 1 2 3 677_day1/unc_trl_results/Pneu_cl+tlrc
677_day1 neg u 0 1 18 26 0 6 0 1 2 3 677_day1/unc_trl_results/Uneg_cl+tlrc
677_day1 neu u 0 1 18 26 0 6 0 1 2 3 677_day1/unc_trl_results/Uneu_cl+tlrc
679_day1 neg p 1 1 51.2 1 679_day1/unc_trl_results/Pneg_cl+tlrc
679_day1 neu p 1 1 51.2 1 679_day1/unc_trl_results/Pneu_cl+tlrc
679_day1 neg u 1 1 51.2 1 679_day1/unc_trl_results/Uneg_cl+tlrc
679_day1 neu u 1 1 51.2 1 679_day1/unc_trl_results/Uneu_cl+tlrc
684_day1 neg p 0 1 49.8 684_day1/unc_trl_results/Pneg_cl+tlrc
684_day1 neu p 0 1 49.8 684_day1/unc_trl_results/Pneu_cl+tlrc
684_day1 neg u 0 1 49.8 684_day1/unc_trl_results/Uneg_cl+tlrc
684_day1 neu u 0 1 49.8 684_day1/unc_trl_results/Uneu_cl+tlrc
694_day1 neg p 1 1 54.8 22 0 5 0 0 2 3 694_day1/unc_trl_results/Pneg_cl+tlrc
694_day1 neu p 1 1 54.8 22 0 5 0 0 2 3 694_day1/unc_trl_results/Pneu_cl+tlrc
694_day1 neg u 1 1 54.8 22 0 5 0 0 2 3 694_day1/unc_trl_results/Uneg_cl+tlrc
694_day1 neu u 1 1 54.8 22 0 5 0 0 2 3 694_day1/unc_trl_results/Uneu_cl+tlrc
696_day1 neg p 1 2 26.3 32 0 17 1 4 5 7 696_day1/unc_trl_results/Pneg_cl+tlrc
696_day1 neu p 1 2 26.3 32 0 17 1 4 5 7 696_day1/unc_trl_results/Pneu_cl+tlrc
696_day1 neg u 1 2 26.3 32 0 17 1 4 5 7 696_day1/unc_trl_results/Uneg_cl+tlrc
696_day1 neu u 1 2 26.3 32 0 17 1 4 5 7 696_day1/unc_trl_results/Uneu_cl+tlrc
705_day1 neg p 0 1 34.4 0 11 5 1 3 2 705_day1/unc_trl_results/Pneg_cl+tlrc
705_day1 neu p 0 1 34.4 0 11 5 1 3 2 705_day1/unc_trl_results/Pneu_cl+tlrc
705_day1 neg u 0 1 34.4 0 11 5 1 3 2 705_day1/unc_trl_results/Uneg_cl+tlrc
705_day1 neu u 0 1 34.4 0 11 5 1 3 2 705_day1/unc_trl_results/Uneu_cl+tlrc
711_day1 neg p 1 3 37 0 17 4 2 5 6 711_day1/unc_trl_results/Pneg_cl+tlrc
711_day1 neu p 1 3 37 0 17 4 2 5 6 711_day1/unc_trl_results/Pneu_cl+tlrc
711_day1 neg u 1 3 37 0 17 4 2 5 6 711_day1/unc_trl_results/Uneg_cl+tlrc
711_day1 neu u 1 3 37 0 17 4 2 5 6 711_day1/unc_trl_results/Uneu_cl+tlrc
727_day1 neg p 1 1 30.8 36 0 32 11 4 8 9 727_day1/unc_trl_results/Pneg_cl+tlrc
727_day1 neu p 1 1 30.8 36 0 32 11 4 8 9 727_day1/unc_trl_results/Pneu_cl+tlrc
727_day1 neg u 1 1 30.8 36 0 32 11 4 8 9 727_day1/unc_trl_results/Uneg_cl+tlrc
727_day1 neu u 1 1 30.8 36 0 32 11 4 8 9 727_day1/unc_trl_results/Uneu_cl+tlrc
731_day1 neg p 1 1 23.6 39 0 48 15 4 16 13 731_day1/unc_trl_results/Pneg_cl+tlrc
731_day1 neu p 1 1 23.6 39 0 48 15 4 16 13 731_day1/unc_trl_results/Pneu_cl+tlrc
731_day1 neg u 1 1 23.6 39 0 48 15 4 16 13 731_day1/unc_trl_results/Uneg_cl+tlrc
731_day1 neu u 1 1 23.6 39 0 48 15 4 16 13 731_day1/unc_trl_results/Uneu_cl+tlrc
767_day1 neg p 1 1 28.6 48 0 32 13 8 2 9 767_day1/unc_trl_results/Pneg_cl+tlrc
767_day1 neu p 1 1 28.6 48 0 32 13 8 2 9 767_day1/unc_trl_results/Pneu_cl+tlrc
767_day1 neg u 1 1 28.6 48 0 32 13 8 2 9 767_day1/unc_trl_results/Uneg_cl+tlrc
767_day1 neu u 1 1 28.6 48 0 32 13 8 2 9 767_day1/unc_trl_results/Uneu_cl+tlrc
768_day1 neg p 1 1 31.1 26 0 11 3 1 1 6 768_day1/unc_trl_results/Pneg_cl+tlrc
768_day1 neu p 1 1 31.1 26 0 11 3 1 1 6 768_day1/unc_trl_results/Pneu_cl+tlrc
768_day1 neg u 1 1 31.1 26 0 11 3 1 1 6 768_day1/unc_trl_results/Uneg_cl+tlrc
768_day1 neu u 1 1 31.1 26 0 11 3 1 1 6 768_day1/unc_trl_results/Uneu_cl+tlrc
792_day1 neg p 1 1 49.4 37 1 43 14 5 11 13 792_day1/unc_trl_results/Pneg_cl+tlrc
792_day1 neu p 1 1 49.4 37 1 43 14 5 11 13 792_day1/unc_trl_results/Pneu_cl+tlrc
792_day1 neg u 1 1 49.4 37 1 43 14 5 11 13 792_day1/unc_trl_results/Uneg_cl+tlrc
792_day1 neu u 1 1 49.4 37 1 43 14 5 11 13 792_day1/unc_trl_results/Uneu_cl+tlrc
805_day1 neg p 0 1 39.4 32 0 47 15 6 14 12 805_day1/unc_trl_results/Pneg_cl+tlrc
805_day1 neu p 0 1 39.4 32 0 47 15 6 14 12 805_day1/unc_trl_results/Pneu_cl+tlrc
805_day1 neg u 0 1 39.4 32 0 47 15 6 14 12 805_day1/unc_trl_results/Uneg_cl+tlrc
805_day1 neu u 0 1 39.4 32 0 47 15 6 14 12 805_day1/unc_trl_results/Uneu_cl+tlrc
812_day1 neg p 1 1 57.4 36 0 28 13 6 4 5 812_day1/unc_trl_results/Pneg_cl+tlrc
812_day1 neu p 1 1 57.4 36 0 28 13 6 4 5 812_day1/unc_trl_results/Pneu_cl+tlrc
812_day1 neg u 1 1 57.4 36 0 28 13 6 4 5 812_day1/unc_trl_results/Uneg_cl+tlrc
812_day1 neu u 1 1 57.4 36 0 28 13 6 4 5 812_day1/unc_trl_results/Uneu_cl+tlrc
819_day1 neg p 1 1 45.7 36 0 13 5 3 0 5 819_day1/unc_trl_results/Pneg_cl+tlrc
819_day1 neu p 1 1 45.7 36 0 13 5 3 0 5 819_day1/unc_trl_results/Pneu_cl+tlrc
819_day1 neg u 1 1 45.7 36 0 13 5 3 0 5 819_day1/unc_trl_results/Uneg_cl+tlrc
819_day1 neu u 1 1 45.7 36 0 13 5 3 0 5 819_day1/unc_trl_results/Uneu_cl+tlrc \

Some rows (e.g., the first 4 rows) are missing one column.

Okay. If there is missing data, how should I remedy that in the table? Or is missing data only okay in 3dLME for missing imaging data?

If there is missing data, how should I remedy that in the table?

Remove those rows with missing data from the table unless you could impute the missing values somehow.