Skip to content

Commit

Permalink
Update 2024-11-14
Browse files Browse the repository at this point in the history
  • Loading branch information
skriptum committed Nov 14, 2024
1 parent dadec98 commit 231eac5
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 43 deletions.
12 changes: 5 additions & 7 deletions vwl6/VL_Sozialismus/hausarbeit/Code.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -518,30 +518,28 @@ ggplot(aes(x=year, y=(inv_otal / social_product)*100), data=investment) +
xlim(1969,1987)
ggsave("images/inv_sp.png", height=3, width=7, dpi=500)
```
```{r}
ggplot(aes(x=year, y=(inv_social/inv_otal)), data=investment) +
geom_line()
```

### Figure: Real Wage Growth

Plot the real wage growth and the 5-year moving average of the real wage growth

```{r}
ggplot(aes(x = year), data=wage) +
geom_point(aes(y= real_growth, color="")) +
ggplot(aes(x = year), data=comb) +
geom_point(aes(y= real_growth, color="yearly"), shape=3) +
geom_line(aes(y= moving_avg, color="5-year mov. avg")) +
geom_point(aes(y= moving_avg), shape=5, color = "red") +
labs(title = "",
x = "Year",
y = "Growth") +
geom_hline(yintercept=0, color="grey") +
theme_tufte() +
scale_color_brewer(palette = "Set1") +
theme(
legend.position = "bottom",
legend.title = element_blank(),
panel.border = element_rect(fill = NA, color = "black"),
) +
scale_y_continuous(labels = scales::percent_format(scale = 100))
scale_y_continuous(labels = scales::percent_format(scale = 100)) +
xlim(1970,1990)
ggsave("images/real_wage.png", width = 7, height = 4, dpi = 500)
```
42 changes: 25 additions & 17 deletions vwl6/VL_Sozialismus/hausarbeit/essay.bib
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,31 @@ @inproceedings{chossudovskyGlobalisationPovertyImpacts1998
file = {/Users/marten/Zotero/storage/7GV7VPYZ/friedmann_1998_the globalisation of poverty.pdf}
}

@misc{ClubParis,
title = {Club de {{Paris}}},
urldate = {2024-11-14},
howpublished = {https://clubdeparis.org/en/traitements/ex-yugoslavia-13-07-1988/en},
file = {/Users/marten/Zotero/storage/FDHJQYW4/en.html}
}

@article{flahertyInvestmentPropertyRights1994,
title = {Investment and {{Property Rights}} in {{Yugoslavia}}: {{The Long Transition}} to a {{Market Economy}}. {{By Milica Uvali{\'c}}}. {{New York}}: {{Cambridge University Press}}, 1992. 260 Pp. {{Index}}. {{Figures}}. {{Tables}}. \$59.95, Hard Bound.},
shorttitle = {Investment and {{Property Rights}} in {{Yugoslavia}}},
author = {Flaherty, Diane},
year = {1994},
month = dec,
journal = {Slavic Review},
volume = {53},
number = {4},
pages = {1150--1151},
issn = {0037-6779, 2325-7784},
doi = {10.2307/2500878},
urldate = {2024-11-14},
abstract = {//static.cambridge.org/content/id/urn\%3Acambridge.org\%3Aid\%3Aarticle\%3AS0037677900059465/resource/name/firstPage-S0037677900059465a.jpg},
langid = {english},
file = {/Users/marten/Zotero/storage/Y5EKSXL4/Flaherty - 1994 - Investment and Property Rights in Yugoslavia The Long Transition to a Market Economy. By Milica Uva.pdf}
}

@article{fukuyamaEndHistory1989,
title = {The {{End}} of {{History}}?},
author = {Fukuyama, Francis},
Expand Down Expand Up @@ -258,23 +283,6 @@ @article{meznaricYugoslaviaEmigrationOut1993
file = {/Users/marten/Zotero/storage/246GTP3C/meznaric_1993_17 yugoslavia.pdf}
}

@article{milanovicWallFellPoor2015,
title = {After the {{Wall Fell}}: {{The Poor Balance Sheet}} of the {{Transition}} to {{Capitalism}}},
shorttitle = {After the {{Wall Fell}}},
author = {Milanovic, Branko},
year = {2015},
journal = {Challenge},
volume = {58},
number = {2},
eprint = {26772903},
eprinttype = {jstor},
pages = {135--138},
publisher = {Taylor \& Francis, Ltd.},
issn = {0577-5132},
urldate = {2024-11-08},
abstract = {Many Western economists were rapturous about the prospects for Eastern Europe's transition to rapid growth and solid democracy once the Berlin Wall fell in 1989. The march to capitalism was to be paved with gold. Most of the nations did poorly. Here is the disappointing scorecard.}
}

@article{milanovicWallFellPoor2015a,
title = {After the {{Wall Fell}}: {{The Poor Balance Sheet}} of the {{Transition}} to {{Capitalism}}},
shorttitle = {After the {{Wall Fell}}},
Expand Down
Loading

0 comments on commit 231eac5

Please sign in to comment.