Replication Exercises for Introductory Econometrics (6 ed.)

By Solomon Negash

Also covered using Python here and using R here.

***

These replication exercises assume that:

For example, I had to import data from R for the replication exercises in Chapter 7 using the the following code snippet in R:

	install.packages("wooldridge")
	library(wooldridge)
	data("beauty")
	require(foreign)
	write.dta(beauty, "~/Desktop/beauty.dta") ## to save to the working directory (here Desktop)
	

Part I.

Regression Analysis with Cross-Sectional Data


Part II

Regression Analysis with Time Series Data


Part III

Advanced Topics


Computer Exercises

Part I. Regression Analysis with Cross-Sectional Data


Home | Wooldridge I | Wooldridge II | Greene 8ed | Verbeek 5ed | Report Error |