You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
### SETUP ###
|
|
d <- read.table("./cpunish.csv",sep=",", header=T)
|
|
attach(d)
|
|
LN_VC100k96 = log(VC100k96)
|
|
### MODEL ###
|
|
m1 <- glm(EXECUTIONS ~ INCOME + PERPOVERTY + PERBLACK + LN_VC100k96 + SOUTH + DEGREE,
|
|
family=poisson)
|
|
results <- summary.glm(m1)
|
|
results
|
|
results['coefficients']
|
|
|