From 992b06b032e742f66397aea6806f22161522c8c1 Mon Sep 17 00:00:00 2001
From: mollyk <katsouli.mo@gmail.com>
Date: Tue, 31 Oct 2023 11:31:53 +0200
Subject: [PATCH] Fix/spelling error pearson k-means tolerance (#469)

* Minor fixes in algorithms user guide

* Fixes Pearson spelling and K-means default tolerance
---
 exareme2/algorithms/in_database/kmeans.json              | 2 +-
 exareme2/algorithms/in_database/pearson_correlation.json | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/exareme2/algorithms/in_database/kmeans.json b/exareme2/algorithms/in_database/kmeans.json
index 637d0a4c..31d37b92 100644
--- a/exareme2/algorithms/in_database/kmeans.json
+++ b/exareme2/algorithms/in_database/kmeans.json
@@ -48,7 +48,7 @@
             ],
             "notblank": true,
             "multiple": false,
-            "default": 0.0001,
+            "default": 0.01,
             "min": 0.0,
             "max": 1.0
         }
diff --git a/exareme2/algorithms/in_database/pearson_correlation.json b/exareme2/algorithms/in_database/pearson_correlation.json
index b074de72..e97e7e78 100644
--- a/exareme2/algorithms/in_database/pearson_correlation.json
+++ b/exareme2/algorithms/in_database/pearson_correlation.json
@@ -6,7 +6,7 @@
     "inputdata": {
         "y": {
             "label": "Variables",
-            "desc": "Nuerical variables on x axis of correlation matrix.",
+            "desc": "Numerical variables on x axis of correlation matrix.",
             "types": [
                 "real",
                 "int"
@@ -19,7 +19,7 @@
         },
         "x": {
             "label": "Covariates (optional)",
-            "desc": "Nuerical variables on y axis of correlation matrix.",
+            "desc": "Numerical variables on y axis of correlation matrix.",
             "types": [
                 "real",
                 "int"
-- 
GitLab