-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation1.Rmd
More file actions
155 lines (109 loc) · 4.04 KB
/
Copy pathpresentation1.Rmd
File metadata and controls
155 lines (109 loc) · 4.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
title: "The Top 0.4% of Finland: an Analysis of Incomes and Tax Rates from 2009 to 2013"
author: "Kyle Ott and Cornelius Schneider"
date: "December 4, 2014"
output:
revealjs::revealjs_presentation:
theme: solarized
transition: fade
highlight: default
bibliography:
- main1.bib
- packages1.bib
---
```{r, include=FALSE}
pkgs <- c('httr', 'dplyr', 'XML', 'ggplot2', 'stringr', 'car', 'devtools', 'rsdmx', 'stargazer', 'knitr', 'CausalImpact', 'tidyr', 'reshape2', 'sandwich', 'lmtest', 'plm')
repmis::LoadandCite(pkgs, file = 'packages1.bib')
setwd("/Users/Kyle/Dropbox/!Fall_2014/Collab_Data/Final_Project/")
##################################
# Presentation: Data Science Course
# Kyle Ott & Cornelius Schneider
# 4 December 2014
##################################
# Load packages
library(httr)
library(dplyr)
library(XML)
library(ggplot2)
library(stringr)
library(car)
library(devtools)
library(rsdmx)
library(stargazer)
library(knitr)
library(CausalImpact)
library(tidyr)
library(reshape2)
library(sandwich)
library(lmtest)
library(plm)
```
## Introduction (1)
<style type="text/css">
p { text-align: left; }
</style>
“Optimal” income taxation is always discussed against the background of *classic economic theories*:
In a very recent work, @piketty2014inequality identify additional reasons why trends in top-income shares are correlated with the tax rates:
- labor responses
- evasion/avoidance responses
- and bargaining responses.
<br>
The current debate still lacks information about the top of the income distribution.
Our paper’s purpose is to identify anomalies in the tax patterns of ultra-wealthy Finnish people.
## Introduction (2): Why Finland?
[//]: This figure was creating using CartoDB, here is the link: http://cdb.io/1yVDOcv

## Our data (1)
[//]: This is a screenshot from the taloussanaomat website

@taloussanomat
## Our data (2)
- 70,402 observations (N = ~15,000 ; T = 5)
- Scraped all five years: 2009 to 2013
- Created time series dataset
- Created panel dataset using names as unique id's (N = 4867)
- Variables
+ Name
+ Total Income
+ Total Taxes Paid
+ Average Tax Rate
+ Rank
## Share of tax revenue paid by top 0.4%
[//]: creating using loop_best2.R

##
[//]: creating using loop_best2.R

##
[//]: creating using loop_best2.R

## Research Question
What is the responsiveness of reported taxable income to changes in average tax rates?
- Our research is motivated by the framework laid down by @gruber2002elasticity, @saez2004reported, and @giertz2007elasticity.
- @gruber2002elasticity and @giertz2007elasticity uses **panel data** to observe income elasticities. @saez2004reported uses **aggregated time series**.
- All of these papers look to observe long-term behavoiral elasticities, but given our dataset, we are only looking for **short-term** elasticies.
## Average tax rates in decile means
[//]: creating using loop_best2.R

<br>
(inspired by @riihela2010trends)
## Key Findings (1)
[//]: creating using inferential_stats.R, red box added using Preview

## Key Findings (2)
[//]: creating using inferential_stats.R, red box added using Preview


Model from @giertz2007elasticity
## Conclusion
Limitations:
- Limited expressiveness of average tax rates
- Only short-term elasticities (not long term)
- Lacking variables: marginal tax rates, controlling for other kinds of income, demographic controls, and marital status control
<br>
Further research needed!
- Panel fixed effects model
- Further robustness checks
- Comparison to other Scandinavian countries
- Investigating our counterintuitive result
## References