This repository is for learning purpouses. It covers from set theory to more advanced methods in statistics.
- [] Binary representation for Interger (
unsigned
, only naturals include 0; and,signed
, naturals and negatives numbers) - [] Binary representation for floating
- [] Binary representation for characters
- Union sets (in
R
) - Intersection sets (in
R
)
- Mean (
media.cpp
andvariance.R
) - Varianze (
variance.cpp
andvariance.R
) - Standardization (
standardization.cpp
trough header files) - Range (
range.cpp
) - Percentile
- Interquartile range
- Variance algorithm
- Welford Algorithm
- http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.302.7503&rep=rep1&type=pdf
- https://bayesfactor.blogspot.com/2016/05/numerical-pitfalls-in-computing-variance.html
- https://www.johndcook.com/blog/standard_deviation/
- https://github.com/SurajGupta/r-source/blob/a28e609e72ed7c47f6ddfbb86c85279a0750f0b7/src/library/stats/src/cov.c
- Bernoulli, Binomail and Uniform distribution (
R
andcpp
) - Poisson and Geometric distribution (
R
andcpp
) - Gamma and Beta distribution (
R
andcpp
)
- Sampling with replacement
- Sampling without replacement
- t test
- T.B.D