Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: export properly lib func #8

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rs-stats"
version = "0.2.0"
version = "0.3.0"
authors = ["LSH <[email protected]>"]
edition = "2018"
description = "Statistics library in rust"
Expand Down
16 changes: 11 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ pub mod stddev;
pub mod variance;
pub mod z_score;

use crate::average::average;
use crate::erf::erf;
use crate::stddev::std_dev;
use crate::variance::variance;
use crate::z_score::z_score;
pub use average::average;
pub use cummulative_distrib::cummulative_distrib;
pub use erf::erf;
pub use erfc::erfc;
pub use normal_cummulative_distrib::normal_cummulative_distrib;
pub use prob_density::normal_probability_density;
pub use prob_density::probability_density;
pub use std_err::std_err;
pub use stddev::std_dev;
pub use variance::variance;
pub use z_score::z_score;
Loading