Crates.io | datas |
lib.rs | datas |
version | 0.1.5 |
source | src |
created_at | 2023-11-20 21:41:36.787706 |
updated_at | 2023-11-23 18:46:12.658185 |
description | A library for data structures and algorithms and data analisys |
homepage | |
repository | https://github.com/kris007iron/datas |
max_upload_size | |
id | 1042936 |
size | 569,128 |
Datas is a Rust library designed to provide a comprehensive set of tools for data analysts. Whether you're working with large datasets or conducting complex analyses, this library aims to simplify the process and empower analysts with efficient and reliable functionalities.
Array Creation:
Indexing and Slicing:
Element-Wise Operations:
Descriptive Statistics:
Sorting:
Data Cleaning:
Reshaping:
Concatenation and Splitting:
Linear Algebra Operations:
Random Number Generation:
Installation:
Add Datas to your Cargo.toml
file:
[dependencies]
datas = "0.1.4"
Usage:
Import the library into your Rust project:
use datas::*;
Start using the powerful data analysis features in your project.
// Example code showcasing how to use key features
fn main(){
let data: [f64; 4] = [1.0, 2.0, 3.0, 4.0];
let mean = datas::mean_f(&data);
print!("Mean: {}", mean);
}
// ...
Contributions are welcome! If you have ideas for improvements, new features, or bug fixes, please open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.