| Credit | R Documentation |
Credit Card Balance Data
Description
A simulated data set containing information on ten thousand customers. The aim here is to predict which customers will default on their credit card debt.
Usage
Credit
Format
A data frame with 10000 observations on the following 4 variables.
IDIdentification
IncomeIncome in $1,000's
LimitCredit limit
RatingCredit rating
CardsNumber of credit cards
AgeAge in years
EducationNumber of years of education
GenderA factor with levels
MaleandFemaleStudentA factor with levels
NoandYesindicating whether the individual was a studentMarriedA factor with levels
NoandYesindicating whether the individual was marriedEthnicityA factor with levels
African American,Asian, andCaucasianindicating the individual's ethnicityBalanceAverage credit card balance in $.
Source
Simulated data, with thanks to Albert Kim for pointing out that this was omitted, and supplying the data and man documentation page on Oct 19, 2017
References
James, G., Witten, D., Hastie, T., and Tibshirani, R. (2013) An Introduction to Statistical Learning with applications in R, https://www.statlearning.com, Springer-Verlag, New York
Examples
summary(Credit)
lm(Balance ~ Student + Limit, data=Credit)