QStudioMetrics is a high-performance C++ toolbox for exploratory data analysis, chemometrics, and multivariate statistics. It provides a bridge between complex algorithms and intuitive discovery, allowing researchers to interact with their data without writing a single line of code.
- Interactive Exploratory Analysis: Real-time plotting and manipulation of PCA and CPCA models.
- Advanced Regression: Comprehensive support for PLS and MLR with automated validation.
- Robust Classification: Linear Discriminant Analysis (LDA) with high-accuracy results.
- Validation Suite: Built-in K-Fold cross-validation, Leave-One-Out, and Y-Scrambling to ensure statistical significance.
- High Performance: Native C++20 engine powered by
libscientificfor handling large datasets efficiently. - Cross-Platform: Seamlessly runs on Linux, Windows, and macOS (Intel/Silicon).
Discover how to separate wine cultivars in 30 seconds:
- Import: Launch QStudioMetrics and go to
File > Import Data. Selectexamples/wine.csv. - Model: Navigate to
Models > PCA. Select all chemical variables (Alcohol, Malic acid, etc.) and clickCompute. - Discover: Open the
Scores Plot. You will see three distinct clusters representing different wine cultivars based on their chemical profile!
- C++ Compiler: Supporting C++20 (GCC 10+, Clang 10+, MSVC 2019+)
- CMake: >= 3.22
- Qt6: Core, Core5Compat, Gui, Widgets, Sql, PrintSupport, Concurrent, Charts
- libscientific: (Automatically downloaded during build if not found)
- Pandoc & LaTeX: (Optional) Required only for building the PDF/HTML documentation
brew install cmake qt qt5compat
mkdir build && cd build
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix qt)
make -jsudo apt update
sudo apt install build-essential cmake qt6-base-dev libqt6charts6-dev libqt6core5compat6-dev
mkdir build && cd build
cmake ..
make -jsudo dnf install gcc-c++ cmake qt6-qtbase-devel qt6-qtcharts-devel qt6-qt5compat-devel
mkdir build && cd build
cmake ..
make -jDetailed documentation, including statistical interpretations and plot guides, is available in the docs folder.
brew install pandoc
# For PDF support:
brew install --cask mactex-no-guisudo apt install pandoc texlive-latex-base texlive-fonts-recommended texlive-extra-utils texlive-latex-extrasudo dnf install pandoc texlive-scheme-basiccd docs
make html # Generates build/index.html
make pdf # Generates build/MANUAL.pdf
make all # Generates bothIf you use QStudioMetrics in your research, please cite it to support the project:
Randazzo, G. M. QStudioMetrics: A C++ Toolbox for Multivariate Analysis. GitHub Repository. https://github.com/gmrandazzo/QStudioMetrics
QStudioMetrics is distributed under the GNU Affero General Public License Version 3. See the LICENSE file for the full text.
Author: Giuseppe Marco Randazzo
Contact: [email protected]
