feat/norbert_plots #1

Merged
s434742 merged 3 commits from feat/norbert_plots into master 2021-04-14 10:26:27 +02:00
Showing only changes of commit 0b015c14db - Show all commits

View File

@ -41,4 +41,5 @@ ggplot(german_credit_risk, aes(x = Duration, y = Credit.amount, color = Sex)) +
ggplot(german_credit_risk , aes(x = factor(Job), fill = Purpose)) +
geom_bar() +
scale_x_discrete(breaks = 0:3, labels=c("Unskilled, non-resident", "Unskilled, resident","Skilled","Highly skilled")) +
labs(title="Credit purposes for different job statuses", x="Duration", y = "Amount")
labs(title="Credit count and purpose for different job statuses", x="Job status", y = "Credit count") +
theme_minimal()