Complete documentation for FilePrepper - ML Data Preprocessing Tool.
- Quick Start Guide - Get up and running in 5 minutes
- CLI Guide - Complete command reference with examples
- Common Scenarios - Real-world use cases and workflows
- API Reference - Programmatic usage for .NET developers
- Phase 2 Complete Guide - Window operations, datetime, string, conditional features ⭐
- Publishing Guide - NuGet publishing instructions
- TASKS - Project roadmap and development tasks
# Install as global .NET tool
dotnet tool install -g fileprepper-cli
# Verify installation
fileprepper --versionSee Installation Guide for detailed instructions.
# Normalize data
fileprepper normalize-data --input data.csv --output normalized.csv \
--columns "Age,Salary" --method MinMax
# Fill missing values
fileprepper fill-missing-values --input data.csv --output filled.csv \
--columns "Age,Salary" --method Mean
# Filter rows
fileprepper filter-rows --input sales.csv --output filtered.csv \
--conditions "Revenue:GreaterThan:1000"
# Convert formats
fileprepper file-format-convert --input data.csv --output data.json \
--format JSONfileprepper --help # List all commands
fileprepper <command> --help # Command-specific help
fileprepper -v # Detailed version infoHistorical and release-specific documentation is available in the archive/ directory:
- Release Notes - Version-specific release information
- Test Reports - Historical test status reports
- Migration Guides - Migration and refactoring documentation
- Project Summaries - Detailed project status snapshots
- Main README: ../README.md
- Changelog: ../CHANGELOG.md
- Installation: ../INSTALL.md
- NuGet Package: https://www.nuget.org/packages/fileprepper-cli
- GitHub Repository: https://github.com/iyulab/FilePrepper
- Issues/Support: https://github.com/iyulab/FilePrepper/issues
docs/
├── README.md # This file - Documentation index
├── Quick-Start.md # 5-minute getting started
├── CLI-Guide.md # Complete command reference
├── Common-Scenarios.md # Real-world examples
├── API-Reference.md # Programmatic usage
├── Publishing.md # Publishing guide
├── TASKS.md # Project roadmap
└── archive/ # Historical documentation
├── RELEASE_NOTES_v0.4.0.md
├── RELEASE_CHECKLIST_v0.4.0.md
├── TEST_STATUS.md
├── MIGRATION_COMPLETE_2025-01-04.md
├── PROJECT_SUMMARY.md
└── CLEANUP_SUMMARY.md
Documentation improvements are welcome! Please:
- Keep examples practical and tested
- Use consistent formatting
- Update this index when adding new docs
- Follow markdown best practices
Version: 0.4.9 | Last Updated: 2026-02-06