diff --git a/SimoxUtility/math/statistics/BoxPlotStats.cpp b/SimoxUtility/math/statistics/BoxPlotStats.cpp
index 301e13f4d09f598b9ffe0c30ed5983230384e119..794344ea61f8bc4a21788b48a3d2c66537abe63c 100644
--- a/SimoxUtility/math/statistics/BoxPlotStats.cpp
+++ b/SimoxUtility/math/statistics/BoxPlotStats.cpp
@@ -18,16 +18,16 @@ BoxPlotStats::BoxPlotStats(const std::vector<float>& values, bool isSorted, floa
 
 void BoxPlotStats::set(const std::vector<float>& _values, bool isSorted)
 {
-    const std::vector<float>& values = isSorted ? _values : sorted(_values);
+    const std::vector<float>& values = isSorted ? _values : math::sorted(_values);
 
     this->minimum = math::min(values, true);
     this->maximum = math::max(values, true);
 
-    this->lowerQuartile = math::lowerQuartile(values, true);
+    this->lowerQuartile = math::lower_quartile(values, true);
     this->median = math::median(values, true);
-    this->upperQuartile = math::upperQuartile(values, true);
+    this->upperQuartile = math::upper_quartile(values, true);
 
-    const float iqr = interquartileRange(lowerQuartile, upperQuartile);
+    const float iqr = math::interquartile_range(lowerQuartile, upperQuartile);
 
     this->minWhisker = lowerQuartile - whisk * iqr;
     this->maxWhisker = upperQuartile + whisk * iqr;
diff --git a/SimoxUtility/math/statistics/measures.cpp b/SimoxUtility/math/statistics/measures.cpp
index 26236c5edc3a268093d15ca2b412391498082c62..044b4d5a501cd2a5d0d9562ae553e96801168933 100644
--- a/SimoxUtility/math/statistics/measures.cpp
+++ b/SimoxUtility/math/statistics/measures.cpp
@@ -90,7 +90,7 @@ float simox::math::quantile(const std::vector<float>& _values, float p, bool isS
     }
 }
 
-float simox::math::lowerQuartile(const std::vector<float>& values, bool isSorted)
+float simox::math::lower_quartile(const std::vector<float>& values, bool isSorted)
 {
     return quantile(values, .25, isSorted);
 }
@@ -100,20 +100,20 @@ float simox::math::median(const std::vector<float>& values, bool isSorted)
     return quantile(values, .5, isSorted);
 }
 
-float simox::math::upperQuartile(const std::vector<float>& values, bool isSorted)
+float simox::math::upper_quartile(const std::vector<float>& values, bool isSorted)
 {
     return quantile(values, .75, isSorted);
 }
 
-float simox::math::interquartileRange(const std::vector<float>& _values, bool isSorted)
+float simox::math::interquartile_range(const std::vector<float>& _values, bool isSorted)
 {
     checkNotEmpty(_values);
 
     const std::vector<float>& values = isSorted ? _values : sorted(_values);
-    return interquartileRange(lowerQuartile(values, true), upperQuartile(values, true));
+    return interquartile_range(lower_quartile(values, true), upper_quartile(values, true));
 }
 
-float simox::math::interquartileRange(float lowerQuartile, float upperQuartile)
+float simox::math::interquartile_range(float lowerQuartile, float upperQuartile)
 {
     return upperQuartile - lowerQuartile;
 }
diff --git a/SimoxUtility/math/statistics/measures.h b/SimoxUtility/math/statistics/measures.h
index 67c19c271bf36a6a367cf45992365415b36d147b..fe0d5e44674531e36d5ae90e442e2ab2178ec8b7 100644
--- a/SimoxUtility/math/statistics/measures.h
+++ b/SimoxUtility/math/statistics/measures.h
@@ -19,11 +19,11 @@ namespace simox::math
 
     float quantile(const std::vector<float>& values, float p, bool isSorted=false);
 
-    float lowerQuartile(const std::vector<float>& values, bool isSorted=false);
+    float lower_quartile(const std::vector<float>& values, bool isSorted=false);
     float median(const std::vector<float>& values, bool isSorted=false);
-    float upperQuartile(const std::vector<float>& values, bool isSorted=false);
+    float upper_quartile(const std::vector<float>& values, bool isSorted=false);
 
-    float interquartileRange(const std::vector<float>& values, bool isSorted=false);
-    float interquartileRange(float lowerQuartile, float upperQuartile);
+    float interquartile_range(const std::vector<float>& values, bool isSorted=false);
+    float interquartile_range(float lower_quartile, float upper_quartile);
 
 }