Random Stochastic Distributions
Explore common stochastic distributions for EDA and modeling.
@kaggle.joebeachcapital_random_stochastic_distributions
Explore common stochastic distributions for EDA and modeling.
@kaggle.joebeachcapital_random_stochastic_distributions
The "Random Stochastic Distributions" dataset is a collection of random numbers generated from various common stochastic distributions. The dataset was created by sampling random values from distributions such as Normal, Uniform, Exponential, Gamma, Poisson, Binomial, Geometric, Lognormal, Beta, and Negative Binomial. Each distribution has its own set of parameters, providing a diverse range of data patterns.
This Notebook shows how the data was generated, and also includes an EDA.
Note: It's important to mention that the dataset was generated for educational and exploratory purposes, and while it provides representative samples from the specified distributions, it does not cover the entire parameter space or represent real-world data distributions in all contexts.
CREATE TABLE beta_distribution (
"beta_1" DOUBLE,
"beta_2" DOUBLE,
"beta_3" DOUBLE,
"beta_4" DOUBLE,
"beta_5" DOUBLE,
"beta_6" DOUBLE,
"beta_7" DOUBLE,
"beta_8" DOUBLE,
"beta_9" DOUBLE,
"beta_10" DOUBLE
);CREATE TABLE binomial_distribution (
"binomial_1" BIGINT,
"binomial_2" BIGINT,
"binomial_3" BIGINT,
"binomial_4" BIGINT,
"binomial_5" BIGINT,
"binomial_6" BIGINT,
"binomial_7" BIGINT,
"binomial_8" BIGINT,
"binomial_9" BIGINT,
"binomial_10" BIGINT
);CREATE TABLE exponential_distribution (
"exponential_1" DOUBLE,
"exponential_2" DOUBLE,
"exponential_3" DOUBLE,
"exponential_4" DOUBLE,
"exponential_5" DOUBLE,
"exponential_6" DOUBLE,
"exponential_7" DOUBLE,
"exponential_8" DOUBLE,
"exponential_9" DOUBLE,
"exponential_10" DOUBLE
);CREATE TABLE gamma_distribution (
"gamma_1" DOUBLE,
"gamma_2" DOUBLE,
"gamma_3" DOUBLE,
"gamma_4" DOUBLE,
"gamma_5" DOUBLE,
"gamma_6" DOUBLE,
"gamma_7" DOUBLE,
"gamma_8" DOUBLE,
"gamma_9" DOUBLE,
"gamma_10" DOUBLE
);CREATE TABLE geometric_distribution (
"geometric_1" BIGINT,
"geometric_2" BIGINT,
"geometric_3" BIGINT,
"geometric_4" BIGINT,
"geometric_5" BIGINT,
"geometric_6" BIGINT,
"geometric_7" BIGINT,
"geometric_8" BIGINT,
"geometric_9" BIGINT,
"geometric_10" BIGINT
);CREATE TABLE lognormal_distribution (
"lognormal_1" DOUBLE,
"lognormal_2" DOUBLE,
"lognormal_3" DOUBLE,
"lognormal_4" DOUBLE,
"lognormal_5" DOUBLE,
"lognormal_6" DOUBLE,
"lognormal_7" DOUBLE,
"lognormal_8" DOUBLE,
"lognormal_9" DOUBLE,
"lognormal_10" DOUBLE
);CREATE TABLE negative_binomial_distribution (
"negative_binomial_1" BIGINT,
"negative_binomial_2" BIGINT,
"negative_binomial_3" BIGINT,
"negative_binomial_4" BIGINT,
"negative_binomial_5" BIGINT,
"negative_binomial_6" BIGINT,
"negative_binomial_7" BIGINT,
"negative_binomial_8" BIGINT,
"negative_binomial_9" BIGINT,
"negative_binomial_10" BIGINT
);CREATE TABLE normal_distribution (
"normal_1" DOUBLE,
"normal_2" DOUBLE,
"normal_3" DOUBLE,
"normal_4" DOUBLE,
"normal_5" DOUBLE,
"normal_6" DOUBLE,
"normal_7" DOUBLE,
"normal_8" DOUBLE,
"normal_9" DOUBLE,
"normal_10" DOUBLE
);CREATE TABLE poisson_distribution (
"poisson_1" BIGINT,
"poisson_2" BIGINT,
"poisson_3" BIGINT,
"poisson_4" BIGINT,
"poisson_5" BIGINT,
"poisson_6" BIGINT,
"poisson_7" BIGINT,
"poisson_8" BIGINT,
"poisson_9" BIGINT,
"poisson_10" BIGINT
);CREATE TABLE random_dataset1 (
"normal_1" DOUBLE,
"normal_2" DOUBLE,
"normal_3" DOUBLE,
"normal_4" DOUBLE,
"normal_5" DOUBLE,
"normal_6" DOUBLE,
"normal_7" DOUBLE,
"normal_8" DOUBLE,
"normal_9" DOUBLE,
"normal_10" DOUBLE,
"uniform_1" DOUBLE,
"uniform_2" DOUBLE,
"uniform_3" DOUBLE,
"uniform_4" DOUBLE,
"uniform_5" DOUBLE,
"uniform_6" DOUBLE,
"uniform_7" DOUBLE,
"uniform_8" DOUBLE,
"uniform_9" DOUBLE,
"uniform_10" DOUBLE,
"exponential_1" DOUBLE,
"exponential_2" DOUBLE,
"exponential_3" DOUBLE,
"exponential_4" DOUBLE,
"exponential_5" DOUBLE,
"exponential_6" DOUBLE,
"exponential_7" DOUBLE,
"exponential_8" DOUBLE,
"exponential_9" DOUBLE,
"exponential_10" DOUBLE,
"gamma_1" DOUBLE,
"gamma_2" DOUBLE,
"gamma_3" DOUBLE,
"gamma_4" DOUBLE,
"gamma_5" DOUBLE,
"gamma_6" DOUBLE,
"gamma_7" DOUBLE,
"gamma_8" DOUBLE,
"gamma_9" DOUBLE,
"gamma_10" DOUBLE,
"poisson_1" BIGINT,
"poisson_2" BIGINT,
"poisson_3" BIGINT,
"poisson_4" BIGINT,
"poisson_5" BIGINT,
"poisson_6" BIGINT,
"poisson_7" BIGINT,
"poisson_8" BIGINT,
"poisson_9" BIGINT,
"poisson_10" BIGINT,
"binomial_1" BIGINT,
"binomial_2" BIGINT,
"binomial_3" BIGINT,
"binomial_4" BIGINT,
"binomial_5" BIGINT,
"binomial_6" BIGINT,
"binomial_7" BIGINT,
"binomial_8" BIGINT,
"binomial_9" BIGINT,
"binomial_10" BIGINT,
"geometric_1" BIGINT,
"geometric_2" BIGINT,
"geometric_3" BIGINT,
"geometric_4" BIGINT,
"geometric_5" BIGINT,
"geometric_6" BIGINT,
"geometric_7" BIGINT,
"geometric_8" BIGINT,
"geometric_9" BIGINT,
"geometric_10" BIGINT,
"lognormal_1" DOUBLE,
"lognormal_2" DOUBLE,
"lognormal_3" DOUBLE,
"lognormal_4" DOUBLE,
"lognormal_5" DOUBLE,
"lognormal_6" DOUBLE,
"lognormal_7" DOUBLE,
"lognormal_8" DOUBLE,
"lognormal_9" DOUBLE,
"lognormal_10" DOUBLE,
"beta_1" DOUBLE,
"beta_2" DOUBLE,
"beta_3" DOUBLE,
"beta_4" DOUBLE,
"beta_5" DOUBLE,
"beta_6" DOUBLE,
"beta_7" DOUBLE,
"beta_8" DOUBLE,
"beta_9" DOUBLE,
"beta_10" DOUBLE,
"negative_binomial_1" BIGINT,
"negative_binomial_2" BIGINT,
"negative_binomial_3" BIGINT,
"negative_binomial_4" BIGINT,
"negative_binomial_5" BIGINT,
"negative_binomial_6" BIGINT,
"negative_binomial_7" BIGINT,
"negative_binomial_8" BIGINT,
"negative_binomial_9" BIGINT,
"negative_binomial_10" BIGINT
);CREATE TABLE uniform_distribution (
"uniform_1" DOUBLE,
"uniform_2" DOUBLE,
"uniform_3" DOUBLE,
"uniform_4" DOUBLE,
"uniform_5" DOUBLE,
"uniform_6" DOUBLE,
"uniform_7" DOUBLE,
"uniform_8" DOUBLE,
"uniform_9" DOUBLE,
"uniform_10" DOUBLE
);Anyone who has the link will be able to view this.