Solution of Assignment @ http://mbaskills.in/mlm2019-session-2/
cc.df = read.csv("DefaultData.csv", header = TRUE)
colnames(cc.df)
## [1] "default" "student" "balance" "income"
dim(cc.df)
## [1] 10000 4
# Mean of income
mean(cc.df$income)
## [1] 33516.98
# Standard Deviation of income
sd(cc.df$income)
## [1] 13336.64
# Mean of balance
mean(cc.df$balance)
## [1] 835.3749
# Standard Deviation of balance
sd(cc.df$balance)
## [1] 483.715