Compare commits

..

No commits in common. "2926a8a6e824028026fc8abf2faf3a216ad2a6ff" and "d851c500afb094614c654e262fd9d44f05b05bd8" have entirely different histories.

View File

@ -23,9 +23,11 @@ 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. - **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. - **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. - **Compute module** - Implements various statistical computations and machine learning models.
- **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. - **[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.
#### Matrix and Frame functionality #### Matrix and Frame functionality
- **Matrix operations** - Element-wise arithmetic, boolean logic, transpose, and more. - **Matrix operations** - Element-wise arithmetic, boolean logic, transpose, and more.