• What Is Normal Distribution?

    What Is Normal Distribution?

    What Is Normal Distribution? Table Of Contents: What Is Normal Distribution? Characteristics Of Normal Distribution. Formula For Normal Distribution. Diagram For Normal Distribution. Empirical Rule. Difference Between Probability Function & Probability Density Function. Examples Of Normal Distribution. (1) What Is Normal Distribution? Normal Distribution, also called the Gaussian Distribution, is the most significant Continuous Probability Distribution.   Sometimes it is also called a bell curve. A normal distribution is a type of continuous probability distribution in which most data points cluster toward the middle of the range, while the rest extends symmetrically toward either extreme. (2) Characteristics Of Normal Distribution. Normal Distributions

    Read More

  • What Is Poisson Distribution?

    What Is Poisson Distribution?

    What Is Poisson Distribution Table Of Contents: What Is Poisson Distribution? Formula For Poisson Distribution. Diagram Of Poisson Distribution. Examples Of Poisson Distribution. (1) What Is Poisson Distribution? A Poisson Distribution is a discrete probability distribution. It gives the probability of an event happening a certain number of times (k) within a given interval of time or space. The Poisson Distribution has only one parameter, λ (lambda), which is known constant mean rate. We must know from the history about the mean or average value of that event. (2) Formula For Poisson Distribution. e is Euler’s number (e = 2.71828…) x is the number of occurrences

    Read More

  • What Is Bernoulli Distribution?

    What Is Bernoulli Distribution?

    What Is Bernoulli Distribution? Table Of Contents: What Is Bernoulli Distribution? Formula For Bernoulli Distribution. Diagram For Bernoulli Distribution. Examples Of Bernoulli Distribution. What Is A Bernoulli Trail? Difference in Binomial and Bernoulli Distribution. (1) What Is Bernoulli Distribution? Bernoulli Distribution applies to events that have one trial and two possible outcomes. Bernoulli Distribution is a discrete probability distribution, meaning it’s concerned with discrete random variables.  A discrete random variable is one that has a finite or countable number of possible values—the number of heads you get when tossing three coins at once, or the number of students in a class. (2) Formula

    Read More

  • What Is Binomial Distribution?

    What Is Binomial Distribution?

    What Is Binomial Distribution? Table Of Contents: What Is Binomial Distribution? Formula For Binomial Distribution. Diagram For Binomial Distribution. Examples Of Binomial Distribution. (1) What Is Binomial Distribution? The Binomial Distribution is the discrete probability distribution that gives only two possible results in an experiment, either Success or Failure.   For example, if we toss a coin, there could be only two possible outcomes: heads or tails, and if any test is taken, then there could be only two results: pass or fail. Binomial Distribution is the extension of Uniform Distribution because in Uniform Distribution you will do the experiment only once and

    Read More

  • What Is Uniform Distribution?

    What Is Uniform Distribution?

    What Is Uniform Distribution? Table Of Content: What Is Uniform Distribution? Formula For Uniform Distribution. Example Of Uniform Distribution. (1) What Is Uniform Distribution? In statistics, uniform distribution refers to a type of probability distribution in which all outcomes are equally likely. A deck of cards has within it uniform distributions because the likelihood of drawing a heart, a club, a diamond, or a spade is equally likely.   A coin also has a uniform distribution because the probability of getting either heads or tails in a coin toss is the same. The uniform distribution can be visualized as a straight horizontal line, so for

    Read More

  • What Is Statistical Distribution ?

    What Is Statistical Distribution ?

    What Is Statistical Distribution? Table Of Contents: What Is Statistical Distribution? Why It Is Important? Types Of Statistical Distributions. (1) What Is Statistical Distribution? A data distribution is a function or a listing that shows all the possible values (or intervals) of the data. Often, the data in a distribution will be ordered from smallest to largest, and graphs and charts allow you to easily see both the values and the frequency with which they appear. This distribution describes the grouping or the density of the observations, called the probability density function.  Once you know the data distribution you can calculate the probability of

    Read More

  • What Is Bias & Variance Tradeoff?

    What Is Bias & Variance Tradeoff?

    What Is Bias & Variance Tradeoff? Table Of Contents:  What Is Bias & Variance? Problem With High Bias & High Variance. Way To Reduce High Bias & Variance. What Is Bias & Variance Tradeoff? (1) What Is Bias & Variance ? Bias: Bias in collecting sample data set refers to the tendency of inclining towards particular group or community based on the preference of data collector. High bias in the data set will not accurately represents the entire population. Hence your statistical analysis will be wrong about the population. Variance: Variance in the sample dataset refers to, how far the

    Read More

  • What Is Variance In Statistics ?

    What Is Variance In Statistics ?

    What Is Variance In Statistics? Table Of Contents: What Is Variance? Examples Of Variance. How To Calculate Variance? Advantages & Disadvantages Of Variance. Why Does Variance Matters? (1) What Is Variance ? Variance refers to how the individual data points vary from each other in a sample dataset. It is the statistical measurement of the spread between numbers in a data set.   More specifically, variance measures how far each number in the set is from the mean (average), and thus from every other number in the set.   Variance is often depicted by this symbol: σ2. (2) Examples Of Variance ? Example-1 When

    Read More

  • What Is Bias In Statistics?

    What Is Bias In Statistics?

    What Is Bias In Statistics? Table Of Contents: What Is Bias? How To Calculate Bias? Types Of Bias. Examples Of Bias. How To Avoid Sampling Bias. (1) What Is Bias ? Bias refers to the inclination for or against one person or group, especially in a way considered to be unfair. Bias refers to the flaw in the experiment design or data collection process, which generates results that don’t accurately represent the population. Bias mainly occurs due to human action, if you can control the human factor in your experiment, you can reduce the ‘Bias’. (2) How To Calculate Bias

    Read More

  • Q & A – Pandas Advance Interview Questions

    Q & A – Pandas Advance Interview Questions

    (1) Difference Between “apply()” and “applymap()” Method In Pandas. Main difference between “apply()” and  “applymap()” is that, “apply()” method applies the function entirely by taking a row or column as an argument. “applymap()” method applies the function elementwise to each row or each column. Example import pandas as pd df1 = pd.DataFrame({‘names’: [‘Subrat’, ‘Arpita’, ‘Abhispa’, ‘Subhada’, ‘Sonali’], ‘marks’: [67, 75, 84, 90, 99]}) df1 df1.apply(lambda x:len(x)) Output: Note: Here ‘5’ represents the total elements inside the ‘name’ and ‘marks’ columns. Here apply() considered ‘name’ and ‘column’ as a series and calculated its length. df1.applymap(lambda x: len(str(x))) Output: Note: Here applymap()

    Read More