Skip to content

UW-CSSS-564/lecture-2017-04-20

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

---
title: "Lecture 2017-04-20"
author: "Jeffrey Arnold"
date: "4/20/2017"
output: html_document
---

```{r}
library("rstan")
library("loo")
```

```{r}
data("Duncan")
mod1_data <- list(
  y = Duncan$prestige,
  n = nrow(Duncan)
)
X <- model.matrix(prestige ~ type + income + education, data = Duncan)
mod1_data$X <- X
mod1_data$k <- ncol(X)
mod1_data$b_loc <- 0
mod1_data$b_scale <- 1000
mod1_data$sigma_scale <- 50

mod1_fit <- sampling(mod1)
```

# Example of 

Western (1995) Table 2. Least Squares and Robust Regression Analysis of the Determinants of Union Density in 20 Advanced Capitalist Countries.

Model of Union Density 

```{r}
library("readr")
unionization <- read_tsv(file = "data/western1995/unionization.tsv")
unionization
lm(union_density ~ left_government + labor_force_size + econ_conc,
   data = unionization)
X <- model.matrix(union_density ~ left_government + labor_force_size + econ_conc, data = unionization)


```

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages