把数据来源链接附上《Loan Data》,总共包含有11个字段,500行数据。数据里包含的字段有: loan_ID(贷款ID)、loan_status(贷款状态)、Principal(贷款金额)、terms(贷款期限)、effective_date(开始时间)、due_date(到期时间)、paid_off_time(还款时间)、past_due_days(逾期天数)、age(年龄)、education(教育水平)、g...
先把数据导入Navicat,导入后情况如下图所示,共有500条数据,11个字段,包含的字段有:loan_ID(贷款ID)、loan_status(贷款状态)、Principal(贷款金额)、terms(贷款期限)、effective_date(开始时间)、due_date(到期时间)、paid_off_time(还款时间)、past_due_days(逾期天数)、age(年龄)、education(教育水平)、gender(...
loandata[['loan_amnt','total_rec_int']].resample('M',how=[len,sum]) 有时我们需要只对某一时间段的数据进行聚合和计算,下面的代码中对2016年1月至5月的数据按月进行了聚合,并计算求和。用0填充空值。 1 loandata['2016-01':'2016-05'].resample('M',how=sum).fillna(0) 或者只对某些符合条件...
python machine-learning scikit-learn jupyter-notebook pandas loan-data loan-default-prediction Updated Jun 15, 2018 Jupyter Notebook Mohammedcha / Loan-calculator-bank-payment Star 15 Code Issues Pull requests Loan Calculator a small web application encoded in HTML, PHP, JS, and CSS. If ...
home loan data 青云英语翻译 请在下面的文本框内输入文字,然后点击开始翻译按钮进行翻译,如果您看不到结果,请重新翻译! 翻译结果1翻译结果2翻译结果3翻译结果4翻译结果5 翻译结果1复制译文编辑译文朗读译文返回顶部 住房贷款数据 翻译结果2复制译文编辑译文朗读译文返回顶部...
dataset: Loan Data Investigate data from about 10,000 loans and find patterns on repayment. finance Create Your Free Account GoogleLinkedInFacebook or Email Address Password Start Analyzing for Free By continuing, you accept ourTerms of Use, ourPrivacy Policyand that your data is stored in the ...
The article reports on the federal investigation of Countrywide Financial's business practices which focus on their loan documents. According to the article, investigators are discovering that the company's loan documents contain dubious or erroneous information about their mortgage clients. Many of ...
Loandata['loan_status'].value_counts()-->>Fully Paid 34116 Charged Off 5670Name:loan_status,dtype:int64 # 对还款情况做一个编码 badloan = ['Charged Off'] Loandata['loan_condition'] = np.nan def loan_condition(status): if status in badloan: ...
本文章对小额贷款《Loan Data》的数据进行分析,用的是pycharm IDE,主要用到的python模块是pandas和pyecharts。pandas主要用于数据的导入、导出以及数据处理等,pyecharts主要用于数据可视化。 一、数据理解 Loan Datawww.kaggle.com/zhijinzhai/loandata
《Loan Data》:loan_ID(贷款ID)、loan_status(贷款状态)、Principal(贷款金额)、terms(贷款期限)、effective_date(开始时间)、due_date(到期时间)、paid_off_time(还款时间)、past_due_days(逾期天数)、age(年龄)、education(教育水平)、gender(性别)