All Projects → lachlandeer → hayashir

lachlandeer / hayashir

Licence: MIT license
R Companion to the textbook "Econometrics" by Fumio Hayashi

Programming Languages

r
7636 projects
AGS Script
88 projects

Projects that are alternatives of or similar to hayashir

BeaData.jl
A Julia interface for retrieving data from the Bureau of Economic Analysis (BEA).
Stars: ✭ 17 (-41.38%)
Mutual labels:  econometrics, economic-data
Statsmodels
Statsmodels: statistical modeling and econometrics in Python
Stars: ✭ 6,935 (+23813.79%)
Mutual labels:  econometrics
Econ5121A
Econ5121A@CUHK. This is an open-source writing project.
Stars: ✭ 56 (+93.1%)
Mutual labels:  econometrics
hdfe
No description or website provided.
Stars: ✭ 22 (-24.14%)
Mutual labels:  econometrics
Econ-Data-Science
Articles/ Journals and Videos related to Economics📈 and Data Science 📊
Stars: ✭ 102 (+251.72%)
Mutual labels:  econometrics
awesome-quant-papers
This repository hosts my reading notes for academic papers.
Stars: ✭ 28 (-3.45%)
Mutual labels:  econometrics
gravity
R package that provides estimation methods for Gravity Models
Stars: ✭ 24 (-17.24%)
Mutual labels:  econometrics
FixedEffectjlr
R interface for Fixed Effect Models
Stars: ✭ 20 (-31.03%)
Mutual labels:  econometrics
Financial Models Numerical Methods
Collection of notebooks about quantitative finance, with interactive python code.
Stars: ✭ 3,534 (+12086.21%)
Mutual labels:  econometrics
ScPoEconometrics
Undergraduate textbook for Econometrics with R
Stars: ✭ 100 (+244.83%)
Mutual labels:  econometrics
SMC.jl
Sequential Monte Carlo algorithm for approximation of posterior distributions.
Stars: ✭ 53 (+82.76%)
Mutual labels:  econometrics
doubleml-for-r
DoubleML - Double Machine Learning in R
Stars: ✭ 58 (+100%)
Mutual labels:  econometrics
Probability Theory
A quick introduction to all most important concepts of Probability Theory, only freshman level of mathematics needed as prerequisite.
Stars: ✭ 25 (-13.79%)
Mutual labels:  econometrics
doubleml-for-py
DoubleML - Double Machine Learning in Python
Stars: ✭ 129 (+344.83%)
Mutual labels:  econometrics
Microeconometrics.jl
Microeconometric estimation in Julia
Stars: ✭ 30 (+3.45%)
Mutual labels:  econometrics
econowcast
Experimental tools (R) for Big Data econometrics nowcasting and early estimates
Stars: ✭ 26 (-10.34%)
Mutual labels:  econometrics
ARCHModels.jl
A Julia package for estimating ARMA-GARCH models.
Stars: ✭ 63 (+117.24%)
Mutual labels:  econometrics
Robyn
Robyn is an experimental, automated and open-sourced Marketing Mix Modeling (MMM) package from Facebook Marketing Science. It uses various machine learning techniques (Ridge regression with cross validation, multi-objective evolutionary algorithm for hyperparameter optimisation, gradient-based optimisation for budget allocation etc.) to define m…
Stars: ✭ 433 (+1393.1%)
Mutual labels:  econometrics
armagarch
ARMA-GARCH
Stars: ✭ 59 (+103.45%)
Mutual labels:  econometrics
inquisitor
Python Interface to econdb.com API
Stars: ✭ 31 (+6.9%)
Mutual labels:  economic-data

hayashir: R Companion for "Econometrics" by Fumio Hayashi

CRAN_Status_Badge Travis-CI Build Status AppVeyor Build Status

Graduate students new to both PhD level econometrics and R may find the introduction to both challenging. One major challenge can be finding the empirical data to complete a Problem Set and then loading it into R.

The hayashir data package intends to lighten the load on readers of Hayashi's "Econometrics" who want to follow the empirical parts of the text using R. The package contains all data used in the book and documentation for each data set is included. Once the package is installed and loaded, all data are ready to use with minimal fuss.

Installation

The hayashir package can be installed using the package devtools. After installing devtools, hayashir is installed by entering:

# install devtools if not already installed
# install.packages(devtools)
devtools::install_github("lachlandeer/hayashir")

into the R console.

Example

Load the hayashir package and use the data() function to load the desired data set. The data sets included are:

  • nerlove: Nerlove's electricity supply and cost data, used in Chapter 1
  • mishkin: Monthly Treasury Bill and inflation rates used in Chapter 2
  • griliches: NLS-Y data used in Chapter 3.
  • greene: Christiansen & Greene's electricty supply and cost data from Chapter 4
  • pwt: The Summers-Heston (Penn World Table) data for Chapter 5
  • yen: Yen spot and forward rates for Chapter 6
  • pound: GB Pound spot and forward rates for Chapter 6
  • dm: German Deutsche Mark spot and forward rates for Chapter 6
  • lothiantaylor: US Dollar / British Sterling Exchange rates for Chapter 9
  • moneydemand: US Money Demand data for Chapter 10

To load a data set:

library(hayashir)
data("nerlove")

If using RStudio, View the nerlove data set

View(nerlove)

Check out the documentation for nerlove. It includes variable column names, original source of data, as well as sections where the data appear in the text.

?nerlove
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].