[education/labplot] lib: Added HypothesisTest to the SDK.
Alexander Semke <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 1819575f792860e97a90b8400d366241ff65ca0e by Alexander Semke.
Committed on 10/08/2026 at 07:44.
Pushed by asemke into branch 'master'.
Added HypothesisTest to the SDK.
M +5 -0 lib/CMakeLists.txt
M +6 -9 lib/labplot.h
https://invent.kde.org/education/labplot/-/commit/1819575f792860e97a90b8400d366241ff65ca0e
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index fd5d56a203..ade59b1346 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -95,6 +95,10 @@ set(PLOT_SOURCES
${BACKEND_DIR}/worksheet/plots/cartesian/XYSmoothCurve.cpp
)
+set(STATISTICS_SOURCES
+ ${BACKEND_DIR}/statistics/HypothesisTest.h
+)
+
set(TIME_SERIES_ANALYSIS_SOURCES
${BACKEND_DIR}/timeseriesanalysis/SeasonalDecomposition.cpp
)
@@ -109,6 +113,7 @@ set(SDK_SOURCES
${WORKSHEET_ELEMENT_CONTAINER_SOURCES}
${PLOT_AREA_ELEMENT_SOURCES}
${PLOT_SOURCES}
+ ${STATISTICS_SOURCES}
${TIME_SERIES_ANALYSIS_SOURCES}
)
diff --git a/lib/labplot.h b/lib/labplot.h
index 40a4d08b90..ab66684ebe 100644
--- a/lib/labplot.h
+++ b/lib/labplot.h
@@ -3,30 +3,27 @@
#define SDK
-#include "backend/datasources/filters/filters.h"
+#include "backend/core/Folder.h"
+#include "backend/core/Project.h"
+#include "backend/core/column/Column.h"
#include "backend/matrix/Matrix.h"
#include "backend/spreadsheet/Spreadsheet.h"
-#include "backend/core/Folder.h"
-#include "backend/core/Project.h"
+#include "backend/datasources/filters/filters.h"
-#include "backend/core/column/Column.h"
+#include "backend/statistics/HypothesisTest.h"
#include "backend/worksheet/Worksheet.h"
-
#include "backend/worksheet/Image.h"
#include "backend/worksheet/InfoElement.h"
#include "backend/worksheet/TextLabel.h"
-
#include "backend/worksheet/plots/cartesian/CartesianPlot.h"
-
#include "backend/worksheet/plots/cartesian/Axis.h"
#include "backend/worksheet/plots/cartesian/CartesianPlotLegend.h"
#include "backend/worksheet/plots/cartesian/CustomPoint.h"
#include "backend/worksheet/plots/cartesian/ReferenceLine.h"
#include "backend/worksheet/plots/cartesian/ReferenceRange.h"
-
#include "backend/worksheet/plots/cartesian/plots.h"
#include "backend/core/AbstractAspect.h"
@@ -51,4 +48,4 @@
#include "backend/worksheet/plots/cartesian/Symbol.h"
#include "backend/worksheet/plots/cartesian/Value.h"
-#endif
\ No newline at end of file
+#endif