|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +## [0.1.0] - 2024-12-02 |
| 11 | + |
| 12 | +### Added |
| 13 | + |
| 14 | +- Initial release of CARP Analytics Python library |
| 15 | +- `CarpDataStream` class for loading and processing CARP data streams |
| 16 | +- Streaming JSON parsing with `ijson` for memory-efficient processing |
| 17 | +- Schema discovery and inference from data |
| 18 | +- Parquet export for faster subsequent analysis |
| 19 | +- `ParticipantManager` for tracking participants across study phases |
| 20 | +- `ParticipantAccessor` fluent API for accessing individual participant data |
| 21 | +- `ParticipantInfo` dataclass for participant metadata |
| 22 | +- Data grouping by field, participant, email, SSN, or name |
| 23 | +- DataFrame integration with pandas |
| 24 | +- Location visualization with Folium heatmaps |
| 25 | +- Rich terminal output with progress bars and formatted tables |
| 26 | +- CLI entry point (`carp` command) for command-line usage |
| 27 | +- Support for Python 3.10, 3.11, 3.12, and 3.13 |
| 28 | +- Optional dependencies for pandas, visualization, and scientific computing |
| 29 | +- Type hints with PEP 561 py.typed marker |
| 30 | + |
| 31 | +### Dependencies |
| 32 | + |
| 33 | +- Core: ijson, rich, tqdm |
| 34 | +- Optional pandas: pandas, pyarrow |
| 35 | +- Optional viz: matplotlib, folium |
| 36 | +- Optional science: numpy, scipy, scikit-learn |
| 37 | + |
| 38 | +[Unreleased]: https://github.com/carp-dk/carp-analytics-python/compare/v0.1.0...HEAD |
| 39 | +[0.1.0]: https://github.com/carp-dk/carp-analytics-python/releases/tag/v0.1.0 |
0 commit comments