What is Mean?
Average value of the dataset.
What is Median?
Middle value when data is sorted.
What is Mode?
Most frequent value.
What is Variance?
Measure of how spread out values are.
What is Standard Deviation?
Square root of variance; spread of data from mean.
What is IQR?
Interquartile Range = Q3 − Q1.
How to detect outliers?
Using IQR rule or Z-score.
How to Detect outliers with IQR?
Lb = Q1 - 1.5(IQR)
Ub = Q3 + 1.5(IQR)
Anything outside lb and ub is outlier.
What is Z-score?
How many SDs a value is from the mean.
What does Empirical Rule for Normal D data, say?
Mean +- 1SD = 68% Data
Mean +- 2SD = 95% Data
Mean +- 3SD = 99.7% Data
What is Standard Error (SE)?
SD of sample mean = SD / √n.
What is a distribution?
Pattern of data values.
What is probability?
Chance of an event occurring.
What are independent events in Porb.?
Events that don’t affect each other.
What are mutually exclusive events (Prob.)?
Events that cannot happen together.
What is Conditional probability?
Probability of A given B.
Bayes Theorem use?
Reverse conditional probability.
What is a random variable in Prob.?
Variable whose value is determined by probability.
What is Normal distribution?
Bell-shaped, symmetric distribution.
Why Normal distribution is important?
Many real-life variables follow it
What is Standard Normal distribution?
Mean = 0, SD = 1.
What is Binomial distribution?
Repeated trials with success/failure.
What is Poisson distribution?
Models number of events in fixed interval.
What is CLT?
Sample means become normally distributed and avg of all sample’s means = Pop mean.