From 86eff7714136626d3683138b2f4a4274e4ad6490 Mon Sep 17 00:00:00 2001 From: Erin Date: Thu, 16 May 2024 14:08:00 -0400 Subject: [PATCH] formatting fixes --- plots/combined_univariate_fmri_plots.m | 2 +- plots/make_table_1.m | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plots/combined_univariate_fmri_plots.m b/plots/combined_univariate_fmri_plots.m index 6c34195..2937fb2 100644 --- a/plots/combined_univariate_fmri_plots.m +++ b/plots/combined_univariate_fmri_plots.m @@ -354,7 +354,7 @@ 'entropy (see Fig. S1 and Supplemental Results).'... ' We performed a secondary analysis in which we excluded 15 unilateral patients who did '... 'not undergo surgery or who had one-year Engel outcomes >1. We observed similar trends '... - 'in this smaller patient cohort (Supplemental Results, Fig. S2).

']); + 'in this smaller patient cohort (Fig. S2).

']); else fprintf(sfid,['We next compared the set of features that best distinguished '... 'left from bilateral SOZs versus right from bilateral SOZs (Fig. S2B). '... diff --git a/plots/make_table_1.m b/plots/make_table_1.m index c7045d4..fe70a7f 100644 --- a/plots/make_table_1.m +++ b/plots/make_table_1.m @@ -657,10 +657,10 @@ 'or because of discordant lateralities between the two primary pre-implant hypotheses.']); %} -fprintf(fid,['TLE lateralities were imbalanced across the two centers, with '... - 'left TLE being more prevalent at HUP (%1.1f left, %1.1f right, %1.1f bilateral),'... - 'and right TLE being more prevalent at MUSC '... - '(%1.1f left, %1.1f right, %1.1f bilateral)'],... +fprintf(fid,[' TLE lateralities were imbalanced across the two centers, with '... + 'left TLE being more prevalent at HUP (%1.1f%% left, %1.1f%% right, %1.1f%% bilateral),'... + ' and right TLE being more prevalent at MUSC '... + '(%1.1f%% left, %1.1f%% right, %1.1f%% bilateral).'],... sum(left==1 & is_hup)/sum(~isnan(left(is_hup)))*100,... sum(right==1 & is_hup)/sum(~isnan(right(is_hup)))*100,... sum(bilateral==1 & is_hup)/sum(~isnan(bilateral(is_hup)))*100,... @@ -685,7 +685,7 @@ n_sleep = T.n_sleep; fprintf(fid,[' Of the 72 time segments studied per patient, '... 'a median of %1.1f (IQR %1.1f-%1.1f) were determined to represent '... - 'wakefulness, and %1.1f (IQR %1.1f-%1.1f) were determined to be in NREM sleep.

'],... + 'wakefulness, and %1.1f (IQR %1.1f-%1.1f) were determined to be in N2 or N3 sleep.

'],... median(n_wake),prctile(n_wake,25),prctile(n_wake,75),... median(n_sleep),prctile(n_sleep,25),prctile(n_sleep,75));