Coursera course on probabilities - for data science, actually quite good in explaining a lot of the basic tools,prob, conditional, distributions, sampling, CI, hypothesis, etc.
- A great resource for proba/bayes/b-networks/etc (adam bali)
Difference between ****
- I.e, Probability deals with predicting the likelihood of future events, while statistics involves the analysis of the frequency of past events.
- The problems considered by probability and statistics are inverse to each other.
- In probability theory we consider some underlying process which has some randomness or uncertainty modeled by random variables, and we figure out what happens.
=> Underlying process + randomness and random variables -> what happens next?
- In statistics we observe something that has happened, and try to figure out what underlying process would explain those observations.
=> observe what happened -> what is the underlying process?
- Finally, probability theory is mainly concerned with the deductive part, statistics with the inductive part of modeling processes with uncertainty
- Table of content
- Median
- Mode - most freq
- Weighted mean
- Geometric mean
- Harmonic mean
- Percentiles
- Mean deviation
- Correlation
- Standard deviation, formula
- Standard normal distribution
- Skewness of distribution
- Confidence intervals (using std)
- Accuracy vs precision (accurate vs hitting closely or density)
- Probability
- Probability complement
- Chi-square test, p_value, independent, dependent, significance
- Variation vs variance - a private case
- Std vs variance - std is in the same metric as the mean, is the root of variance., allows outliers to influence, will not result in samples cancelling each other without the square root in the formula.
- Types of events
- Independent events
- Conditional proba
- Proba tree diagrams
- Mutually exclusive events
- Combination and permutations
- Bayes
- Least squares regresssion It works by making the total of the square of the errors as small as possible (that is why it is called "least squares"
- Random variables
- Continuous random variables
- Random vars mean, std, variance
- 25 concepts (part 2), 29 more concepts (part1) & part 3 in statistics.
- Marginal probability
- Joint probability
- Conditional probability
- Chain rule - derivatives using the chain rule, on khan
- Another great course on probability, distribution types, conditional, joint, chain, etc.
- Kahn academy
- A really good intro to probability, conditional, joint, etc.
(another angle) The main difference between probability and statistics has to do with knowledge
- what are the known facts? Inherent in both probability and statistics is a population,
- every individual we are interested in studying, and a sample, consisting of the individuals that are selected from the population.
- in probability: would start with us knowing everything about the composition of a population, and then would ask, “What is the likelihood that a selection, or sample, from the population, has certain characteristics?”
- In statistics: we have no knowledge about the types of socks in the drawer. we infer properties about the population on the basis of a random sample.
Some calculations to get you into probability:
- Finding out the probability of an event
- Of two consecutive events (multiplication)
- Of several events (sum)
- Etc..
- What is? Method for sampling/resampling, and sampling errors explained. (cross validation etc)