R-Machine-Learning-Legacy icon indicating copy to clipboard operation
R-Machine-Learning-Legacy copied to clipboard

add codes for visualization in 05_more_models

Open leahhrlee opened this issue 1 year ago • 1 comments

To show if balances are different for default status: plot(default$balance ~ default$default)

leahhrlee avatar Oct 11 '23 23:10 leahhrlee

ggplot(data = default, aes(x = default, y = balance)) + geom_bar(stat = "identity", aes(fill=default)) + theme_classic()

leahhrlee avatar Oct 11 '23 23:10 leahhrlee