diff --git a/app/lib/screens/study/report/sections/results_descriptive_statistics.dart b/app/lib/screens/study/report/sections/results_descriptive_statistics.dart index 6a066d490..0d43fc114 100644 --- a/app/lib/screens/study/report/sections/results_descriptive_statistics.dart +++ b/app/lib/screens/study/report/sections/results_descriptive_statistics.dart @@ -16,8 +16,6 @@ class DescriptiveStatisticsWidget extends AverageSectionWidget { final String minB; final String maxA; final String maxB; - final String varianceA; - final String varianceB; final int totalInterventionsA; final int totalInterventionsB; @@ -49,12 +47,6 @@ class DescriptiveStatisticsWidget extends AverageSectionWidget { maxB = valuesInterventionB.isNotEmpty ? valuesInterventionB.max.toStringAsFixed(2) : "NONE", - varianceA = valuesInterventionA.isNotEmpty - ? pow(valuesInterventionA.standardDeviation, 2).toStringAsFixed(2) - : "NONE", - varianceB = valuesInterventionB.isNotEmpty - ? pow(valuesInterventionB.standardDeviation, 2).toStringAsFixed(2) - : "NONE", totalInterventionsA = subject.study.schedule.phaseDuration * subject.study.schedule.numberOfCycles, totalInterventionsB = subject.study.schedule.phaseDuration * @@ -127,7 +119,6 @@ class DescriptiveStatisticsWidget extends AverageSectionWidget { _buildTableRow(['Average', averageA, averageB]), _buildTableRow(['Min', minA, minB]), _buildTableRow(['Max', maxA, maxB]), - _buildTableRow(['Variance', varianceA, varianceB]), ], ), );