From ca379e3b981af5eefa21561853c0b7800730e097 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Wed, 28 Jan 2026 08:33:25 +1300 Subject: [PATCH 01/36] add Different category subheading --- index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.html b/index.html index 311a64d..54d8456 100644 --- a/index.html +++ b/index.html @@ -235,6 +235,10 @@

Same category

+

+

Different category

+

+ - From f67d33726480b6bf67bbe5f770f0a9faf3b44002 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 29 Jan 2026 17:33:13 +1300 Subject: [PATCH 33/36] update message for category --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 1a7983b..05eb632 100644 --- a/script.js +++ b/script.js @@ -217,7 +217,7 @@ const boxPlotGrouped = () => { } else if (boxPlotCategory.value === '') { return alert("Please enter a category in the 'category' field, in the 'Correlation between columns' section."); } else if (boxPlotCategoryValue.value === '') { - return alert("Please enter a category value in the 'value' field to the right."); + return alert("Please enter a category value in the 'value' field, in the 'Correlation between columns' section."); } else if (boxPlotCategoryColumnA.value === '') { return alert("Please enter a category in the 'column A' field, in the 'Correlation between columns' section."); } else if (boxPlotCategoryColumnB.value === '') { From f161e6c2e4dbd8767e43e3fddd7d6dfd18674a3d Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 29 Jan 2026 17:57:21 +1300 Subject: [PATCH 34/36] update messages --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index e2d717b..616b5c7 100644 --- a/index.html +++ b/index.html @@ -136,11 +136,11 @@

Correlation between columns

- - + + - - + +

@@ -151,7 +151,7 @@

Correlation between columns

- + `'${el.replace(' ', '')}'`).join().replaceAll(',', ', ') + ']'; document.editor.boxplotCats.value=''; analysis=this.value" />

From 765e3f6094dc5122aa5ade85d34e31f14c610247 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 29 Jan 2026 18:03:59 +1300 Subject: [PATCH 35/36] fix messages --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 616b5c7..c408bda 100644 --- a/index.html +++ b/index.html @@ -136,11 +136,11 @@

Correlation between columns

- - + + - - + +

@@ -151,7 +151,7 @@

Correlation between columns

- `'${el.replace(' ', '')}'`).join().replaceAll(',', ', ') + ']'; document.editor.boxplotCats.value=''; analysis=this.value" /> +

From f72ce4654db5665bc3f1c8f1f22d8f06cd930f4b Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 29 Jan 2026 18:12:00 +1300 Subject: [PATCH 36/36] update message for percentage --- script.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/script.js b/script.js index 05eb632..2c73e69 100644 --- a/script.js +++ b/script.js @@ -382,7 +382,7 @@ const percentageSelection = () => { } else if (newColumn.value === "") { return alert("Please add a column name in the 'new column' field in the 'Column Wrangling' section."); } else if (selectionPercentage.value === "") { - return alert("Please select a percentage."); + return alert("Please add a percentage in the 'percentage' field, in the 'Mean' subsection."); } else { let percentage = selectionPercentage.value; let percentageNegative = false; @@ -438,8 +438,6 @@ const valueCountSelection = () => { return alert("Please add a category in 'group A' field, in the 'Different category' subsection."); } else if (newColumn.value === "") { return alert("Please add a column name in the 'new column' field in the 'Column Wrangling' section."); - } else if (selectionPercentage.value === "") { - return alert("Please select a percentage."); } else { document.editor.textbox.value+="\n" + variable.value + ".loc[" + variable.value + "['" + columnA.value + "'] == '" + groupA.value + "', '" + newColumn.value + "'].value_counts()"; }