Skip to main content

Normal distribution

The Normal Distribution, also known as the Gaussian Distribution, is one of the most important and widely used probability distributions in statistics and machine learning. Here are some key characteristics and information about the Normal Distribution:

  1. Shape: The Normal Distribution is symmetric and bell-shaped. It has a single peak at its mean value.


  2. Mean and Median: The mean (average) and median (middle value) of a Normal Distribution are equal. This is typically denoted as μ (mu).


  3. Standard Deviation: The spread or dispersion of data in a Normal Distribution is determined by the standard deviation (σ). A larger standard deviation indicates greater spread.


  4. Probability Density Function (PDF): The probability density function of a Normal Distribution is given by the famous bell-shaped curve formula:

    Normal Distribution PDF

    • The peak of the curve is at the mean (μ).
    • The spread of the curve is determined by the standard deviation (σ).
  5. 68-95-99.7 Rule: In a Normal Distribution:

    • Approximately 68% of the data falls within one standard deviation of the mean (μ ± σ).
    • Approximately 95% falls within two standard deviations (μ ± 2σ).
    • About 99.7% falls within three standard deviations (μ ± 3σ).

  6. Z-Score: The Z-score measures how far away a data point is from the mean in terms of standard deviations. The formula is: Z=Xμσ, where X is the data point.


  7. Use Cases:

    • Many natural phenomena, such as heights, weights, and test scores, follow a Normal Distribution.
    • It is commonly used in hypothesis testing, confidence intervals, and statistical modeling.
    • In machine learning, it's used in algorithms like Gaussian Naive Bayes and for data preprocessing in methods like feature scaling.

  8. Symmetry: The Normal Distribution is symmetric around its mean, meaning that the probabilities of values above the mean are mirrored by the probabilities of values below the mean.


  9. Central Limit Theorem: This theorem states that the sampling distribution of the sample mean becomes approximately normally distributed as the sample size increases, even if the population distribution is not normal. This is fundamental in statistical inference.

In summary, the Normal Distribution is a fundamental concept in statistics and machine learning due to its prevalence in natural phenomena and its mathematical properties, making it a powerful tool for data analysis and modeling.

Comments

Popular posts from this blog

What is Tensor Parallelism and relationship between Buffer and GPU

  Tensor Parallelism in GPU Tensor parallelism is a technique used to distribute the computation of large tensor operations across multiple GPUs or multiple cores within a GPU .   It is an essential method for improving the performance and scalability of deep learning models, particularly when dealing with very large models that cannot fit into the memory of a single GPU. Key Concepts Tensor Operations : Tensors are multidimensional arrays used extensively in deep learning. Common tensor operations include matrix multiplication, convolution, and element-wise operations. Parallelism : Parallelism involves dividing a task into smaller sub-tasks that can be executed simultaneously. This approach leverages the parallel processing capabilities of GPUs to speed up computations. How Tensor Parallelism Works Splitting Tensors : The core idea of tensor parallelism is to split large tensors into smaller chunks that can be processed in parallel. Each chunk is assigned to a different GP...

Data Wrangling vs EDA

  Aspect Data Wrangling (Data Preprocessing) Exploratory Data Analysis (EDA) Objective Prepare raw data for modeling by cleaning, transforming, and formatting it appropriately. Explore and understand the data to gain insights, identify patterns, and make decisions on data handling and modeling. Order Typically performed as a preliminary step before EDA. Usually conducted after data wrangling to further investigate data characteristics. Data Handling Focuses on data cleaning, filling missing values, encoding categorical variables, and scaling features. Involves data visualization, statistical analysis, and summary statistics to uncover patterns, relationships, and anomalies. Techniques Techniques include imputation, outlier detection, feature scaling, and one-hot encoding. Techniques include histograms, scatter plots, box plots, correlation matrices, and descriptive statistics. Data Transformation Involves structural changes to the dataset, such as feature engineering, data normaliz...

What's replicated, what's not?

Logged operations are replicated. These include, but are not limited to: DDL DML Create/alter table space Create/alter storage group Create/alter buffer pool XML data. Logged LOBs Not logged operations are not replicated. These include, but are not limited to: Database configuration parameters (this allows primary and standby databases to be configured differently). "Not logged initially" tables Not logged LOBs UDF (User Defined Function) libraries. UDF DDL is replicated. But the libraries used by UDF (such as C or Java libraries)  are not replicated, because they are not stored in the database. Users must manually copy the libraries to the standby. Note: You can use database configuration parameter  BLOCKNONLOGGED  to block not logged operations on the primary.