diff --git a/projects/common-map/src/fm-map/components/legend/histogram-details/histogram-details.component.html b/projects/common-map/src/fm-map/components/legend/histogram-details/histogram-details.component.html index e9e618c..f90fd6f 100644 --- a/projects/common-map/src/fm-map/components/legend/histogram-details/histogram-details.component.html +++ b/projects/common-map/src/fm-map/components/legend/histogram-details/histogram-details.component.html @@ -1,15 +1,15 @@
-
Average:
+
Average:
{{histogram.mean| number:'1.0-2'}}
-
Standard deviation:
+
Standard deviation:
{{histogram.stddev| number:'1.0-2'}}
-
Min:
+
Min:
{{histogram.min| number:'1.0-2'}}
-
Max:
+
Max:
{{histogram.max| number:'1.0-2'}}
-
Confidence interval:
+
Confidence interval:
{{histogram.confidence * 100| number:'1.0-0'}}%
diff --git a/projects/common-map/src/fm-map/components/legend/statistics-details/statistics-details.component.html b/projects/common-map/src/fm-map/components/legend/statistics-details/statistics-details.component.html index b9885f5..4fecbaa 100644 --- a/projects/common-map/src/fm-map/components/legend/statistics-details/statistics-details.component.html +++ b/projects/common-map/src/fm-map/components/legend/statistics-details/statistics-details.component.html @@ -1,36 +1,36 @@
-
Data points:
+
Data points:
{{statistics.populationCount}}
-
Min:
+
Min:
{{statistics.min| number:'1.0-2'}}
-
Max:
+
Max:
{{statistics.max| number:'1.0-2'}}
-
Min+1:
+
Min+1:
{{statistics.minPlus| number:'1.0-2'}}
-
Max-1:
+
Max-1:
{{statistics.maxMinus| number:'1.0-2'}}
-
Average:
+
Average:
{{statistics.mean| number:'1.0-2'}}
-
Standard deviation:
+
Standard deviation:
{{statistics.stddev| number:'1.0-2'}}
-
Mode:
+
Mode:
{{statistics.mode| number:'1.0-2'}}
-
Median:
+
Median:
{{statistics.median| number:'1.0-2'}}
-
Kurtosis:
+
Kurtosis:
{{statistics.curtosis| number:'1.0-2'}}
-
Skewness:
+
Skewness:
{{statistics.skewness| number:'1.0-2'}}
-
Variance:
+
Variance:
{{statistics.variance| number:'1.0-2'}}
-
Coefficient of variation:
+
Coefficient of variation:
{{statistics.variationCoefficient | number:'1.0-2'}}
-
90% Confidence interval:
+
90% Confidence interval:
{{statistics.confidenceIntervalLow | number:'1.0-2'}} - {{statistics.confidenceIntervalHigh | number:'1.0-2'}}