Professional-grade PCA analysis made simple. A comprehensive suite of tools for linear, non-linear, and temporal data analysis through powerful command-line and intuitive desktop applications.
GoPCA Suite makes Principal Component Analysis (PCA) accessible to everyone through professional-grade, user-friendly tools that are completely free and open source. PCA is one of the most versatile and interpretable machine learning methods for understanding complex data, and GoPCA Suite removes the barriers to using it effectively. As an added benefit, all processing happens locally on your machine, ensuring your data never leaves your computer.
The suite provides three powerful tools that work together seamlessly:
- GoPCA Desktop - Interactive visual analysis and exploration
- pca CLI - Scriptable command-line interface for automation
- GoCSV Desktop - Data preparation with an Excel-like interface
Whether you're analyzing spectroscopic data, exploring gene expression patterns, or reducing dimensionality in machine learning pipelines, GoPCA Suite delivers enterprise-grade analysis while maintaining complete data sovereignty.
Perfect for interactive data exploration, method development, and teaching.
Key GoPCA Desktop Features:
- Interactive visualizations with zoom, pan, and export
- Real-time plot updates as you adjust parameters
- Confidence ellipses for group visualization
- Customizable color palettes for different data types
- Light and dark themes for comfortable viewing
Ideal for automation, batch processing, and integration into data pipelines.
# Analyze your data with a single command
pca analyze --components 3 --scale standard --output-dir results/ data.csv
# Validate data before analysis
pca validate spectra.csv
# Apply a saved PCA model to new data
pca transform model.json new_data.csv
# Transform with output options
pca transform -f json -o results/ model.json new_samples.csv
Clean and prepare your data with an intuitive spreadsheet-like interface.
GoCSV Desktop Features:
- Edit cells directly in spreadsheet interface
- Add, remove, or reorder columns
- Multi-step undo/redo functionality
- Column type detection (numeric, categorical, target)
- Real-time validation against pca CLI requirements
- Missing value detection and handling
- Export clean CSV files ready for PCA analysis
- Multiple algorithms:
- SVD (default) - Fast and accurate for complete data
- NIPALS - Handles missing data gracefully
- Kernel PCA - For non-linear relationships
- SSA - For time series and temporal pattern analysis
- Flexible preprocessing:
- Mean centering and scaling
- Robust scaling for outlier resistance
- SNV (Standard Normal Variate) for spectroscopy
- Vector normalization
- Missing data strategies: Drop, mean imputation, or iterative methods
Interactive Visualizations:
- Scores & Loadings plots - Explore samples and variable contributions
- Biplots - Combined view with confidence ellipses
- Scree plots - Determine optimal components
- Circle of Correlations - Variable relationships on unit circle
- Diagnostic plots - Detect outliers with T² vs Q residuals
- Eigencorrelation plots - PC-variable correlations
All plots support PNG export, interactive tooltips, full-screen mode, and optional labels.
- Example datasets included: Four interesting datasets for immediate exploration
- Handles real-world data: Robust to missing values, mixed scales, and outliers
- Smart defaults: Automatic parameter selection based on your data
- Cross-platform: Native performance on Windows, macOS, and Linux
- Fast: Optimized implementations handle large datasets efficiently
- Themeable: Light and dark modes for comfortable extended use
GoPCA Suite prioritizes your data privacy:
- 100% Local Processing - All computations happen on your machine only
- Zero Telemetry - No analytics, tracking, or data collection
- No Network Dependencies - Works completely offline
- Open Source - Entire codebase auditable on GitHub
- Compliance Ready - Perfect for GDPR, HIPAA, and strict corporate policies
Your data never leaves your computer. No cloud services, no external servers, no hidden connections.
Verify our privacy claims:
./scripts/verify-privacy.sh # Audit code and dependencies
See PRIVACY.md for detailed privacy documentation and verification.
- Download the latest release for your platform from GitHub Releases
- Launch GoPCA Desktop
- Try an example - Select one of the example datasets (NIR, Iris, Wine, or Swiss roll)
- Or load your data - Click "Open CSV" to load your own file
- Configure preprocessing - Choose centering, scaling, and other options
- Click "Go PCA!" - Explore results interactively
- Launch GoCSV Desktop from the GoPCA Suite installation folder
- Open your raw CSV file or paste data from clipboard
- Clean your data:
- Remove empty rows/columns
- Fix inconsistent headers
- Handle missing values
- Validate column types
- Transform features (e.g., log, sqrt)
- Save the cleaned file
- Open in GoPCA Desktop with one click
macOS: Downloaded apps may be blocked by Gatekeeper. Solution: Move both GoPCA.app and GoCSV.app to Applications folder before launching, or right-click and choose "Open".
Windows: SmartScreen may flag the installer as uncommon. Solution: Click "More info" then "Run anyway", or check "Unblock" in file Properties.
Both warnings are standard OS security features for new software. Verify authenticity by:
- Downloading only from our official GitHub Releases
- Checking SHA-256 checksums provided with each release
# Download the latest release
wget https://github.com/bitjungle/gopca/releases/latest/download/pca
chmod +x pca
# Basic analysis with automatic settings
./pca analyze mydata.csv
# Advanced analysis with custom parameters
./pca analyze \
--components 4 \
--scale standard \
--preprocessing snv \
--format json \
--output-dir results/ \
mydata.csv
# Validate your data first
./pca validate mydata.csv
# Apply a trained model to new samples
./pca transform trained_model.json new_samples.csv
# Transform with custom output and metrics
./pca transform \
--format json \
--output-dir predictions/ \
--include-metrics \
model.json test_data.csv
Analyze NIR, FTIR, Raman, or UV-Vis spectroscopic data to identify chemical patterns, detect adulterants, or monitor reactions. The SNV preprocessing option is specifically designed for spectroscopic data.
Explore gene expression, proteomics, or metabolomics data to find biological patterns, identify biomarkers, or understand disease mechanisms. Handle high-dimensional data with thousands of variables.
Monitor industrial processes in real-time, detect anomalies before they become problems, and understand the relationships between process variables. Use diagnostic plots to identify out-of-specification samples.
Reduce dimensionality before classification or regression, explore feature relationships, visualize high-dimensional clusters, or compress data while preserving variance. Export transformed data for use in other ML pipelines.
Teach multivariate statistics with interactive visualizations, explore research data with publication-ready plots, or demonstrate the power of dimensionality reduction with real examples.
- Privacy Policy & Verification - Our privacy commitment and how to verify it
- Introduction to PCA - Learn the fundamentals of Principal Component Analysis
- Data Preparation Guide - Best practices for preparing your data
- Data Format Specification - Detailed CSV format requirements
- Built-in help system - Hover over any control in GoPCA Desktop for instant help
- Windows: 64-bit Windows (where Go and Wails are supported)
- macOS: Intel and Apple Silicon Macs (where Go and Wails are supported)
- Linux: 64-bit distributions (where Go and Wails are supported)
- Require a graphical environment
- Modern web browser engine (uses system WebView)
- Screen resolution that can display the application window
- Works on any platform where Go binaries can run
- No graphical environment required
Note: Memory and disk requirements depend on your dataset size. The applications themselves are lightweight (~50-100MB), but processing large datasets will require corresponding RAM.
- Report Issues: GitHub Issues
- Ask Questions: GitHub Discussions
- Documentation: See the docs folder for detailed guides
- Contributing: Please read CONTRIBUTING.md before submitting code
GoPCA Suite is open-source software licensed under the MIT License. However, the author respectfully requests that it not be used for military, warfare, or surveillance applications.