Compare commits

...

20 Commits

Author SHA1 Message Date
Palash Tyagi
927f4af5f9
Merge cd3aa84e6019bad5492e9cbc6948caf6c0e0f726 into 2926a8a6e824028026fc8abf2faf3a216ad2a6ff 2025-08-03 01:05:03 +01:00
2926a8a6e8
Merge pull request #66 from Magnus167/update-readme
Update README
2025-08-03 00:30:28 +01:00
Palash Tyagi
bce1bdd21a Update README 2025-07-31 22:52:29 +01:00
cd3aa84e60
Merge branch 'main' into csv 2025-07-06 11:35:13 +01:00
27275e2479
Merge branch 'main' into csv 2025-07-06 11:05:20 +01:00
9ef719316a
Merge branch 'main' into csv 2025-07-06 01:04:10 +01:00
960fd345c2
Merge branch 'main' into csv 2025-07-04 00:59:25 +01:00
325e75419c
Merge branch 'main' into csv 2025-06-07 13:38:30 +01:00
b1dc18d05b
Merge branch 'main' into csv 2025-05-15 18:35:46 +01:00
8cbb957764
Merge branch 'main' into csv 2025-05-13 00:08:38 +01:00
b937ed1cdf
Merge branch 'main' into csv 2025-05-11 02:00:25 +01:00
2e071a6974
Merge branch 'main' into csv 2025-05-05 02:13:15 +01:00
689169bab2
Merge branch 'main' into csv 2025-05-05 02:01:45 +01:00
a45a5ecf4e
Merge branch 'main' into csv 2025-05-04 02:29:12 +01:00
84e1b423f4
Merge branch 'main' into csv 2025-05-04 02:10:55 +01:00
197739bc2f
Merge branch 'main' into csv 2025-05-04 01:07:58 +01:00
d2c2ebca0f
Merge branch 'main' into csv 2025-05-03 01:32:05 +01:00
f5f3f2c100
Merge branch 'main' into csv 2025-05-02 23:38:37 +01:00
9fcb1ea2cf
Merge branch 'main' into csv 2025-05-01 01:14:09 +01:00
Palash Tyagi
623303cf72 Update README to include upcoming features for CSV I/O, Date Utils, and more math functions 2025-05-01 01:13:34 +01:00

View File

@ -23,10 +23,8 @@ Rustframe is an educational project, and is not intended for production use. It
- **Math that reads like math** - element-wise `+`, ``, `×`, `÷` on entire frames or scalars.
- **Frames** - Column major data structure for single-type data, with labeled columns and typed row indices.
- **Compute module** - Implements various statistical computations and machine learning models.
- **[Coming Soon]** _DataFrame_ - Multi-type data structure for heterogeneous data, with labeled columns and typed row indices.
- **Random number utils** - Built-in pseudo and cryptographically secure generators for simulations.
- **[Coming Soon]** _DataFrame_ - Multi-type data structure for heterogeneous data, with labeled columns and typed row indices.
#### Matrix and Frame functionality
@ -51,6 +49,12 @@ The `compute` module provides implementations for various statistical computatio
- Logistic Regression
- Principal Component Analysis
### Coming soon
- **CSV I/O** - read/write CSV files with a simple API.
- **Date Utils** - date math, calendar slicing, indexing, and more.
- **More math** - more math functions and aggregations.
### Heads up
- **Not memoryefficient (yet)** - footprint needs work.
@ -60,6 +64,7 @@ The `compute` module provides implementations for various statistical computatio
- Optional GPU acceleration (Vulkan or similar) for heavier workloads.
- Straightforward Python bindings using `pyo3`.
- Integration with common ML libraries, or introduce simple ML features.
---