21 Reasons Why You Should Never Date an Economist

Even though this list has been around for quite a while (I think inesad.edu.bo posted it first in autumn 2012), I think it just doesn’t get old. On the contrary each time I read through it, I just can’t stop laughing. Hope you enjoy this little re-post 🙂

  1. Economists may be dangerous. Watch out for the invisible hands!
  2. It won’t matter what you supply, they will always demand more.
  3. Continue reading 21 Reasons Why You Should Never Date an Economist

Advertisement

Construct the OLS estimator as a function in R

This post shows how to manually construct the OLS estimator in R (see this post for the exact mathematical derivation of the OLS estimator). In contrary to a previous post, this post focuses on setting up the OLS estimator as a R function. While the aim of the former post was much more on the construction of the OLS estimator in general, is this post all about constructing a functional form around the estimator. Continue reading Construct the OLS estimator as a function in R

Calculate OLS estimator manually in R

This post shows how to manually construct the OLS estimator in R (see this post for the exact mathematical derivation of the OLS estimator). The code will go through each single step of the calculation and estimate the coefficients, standard errors and p-values.  In case you are interested the coding an OLS function rather than in the step wise calculation of the estimation itself I recommend you to have a look at this postContinue reading Calculate OLS estimator manually in R

CLRM – Assumption 5: Normal Distributed Error Terms in Population

Assumption 5 is often listed as a Gauss-Markov assumption and refers to normally distributed error terms \epsilon in the population. Overall, assumption 5 is not a Gauss-Markov assumption in that sense that the OLS estimator will still be the best linear unbiased estimator (BLUE) even if the error terms \epsilon are not normally distributed in the population. Continue reading CLRM – Assumption 5: Normal Distributed Error Terms in Population

Violation of CLRM – Assumption 4.1: Consequences when the expected value of the error term is non-zero

Violating assumption 4.1 of the OLS assumptions, i.e. E(\epsilon_i|X) = 0, can affect our estimation in various ways. The exact ways a violation affects our estimates depends on the way we violate E(\epsilon_i|X) = 0. This post looks at different cases and elaborates on the consequences of the violation. We start with a less severe case and then continue discussing a far more sensitive violation of assumption 4.1. Continue reading Violation of CLRM – Assumption 4.1: Consequences when the expected value of the error term is non-zero