一 :项目目的 研究Lending Club 贷款的风险特征,并提出建模方案。 二:数据获取 数据集来自Lending Club平台发生借贷的业务数据,2017年第一季度,具体数据集可以从Lending Club官网下载,需要先用邮箱注册一个账号。 三:数据探索 1.导入需要用到的工具 import ...
分类:
其他好文 时间:
2019-12-13 00:00:55
阅读次数:
144
PageHelper.startPage(pageNum, pageSize, sortColumn); List<UcUser> list = userMapper.queryUcUserAll(); PageInfo<UcUser> pageInfo = new PageInfo<>(list) ...
分类:
其他好文 时间:
2019-11-27 10:36:18
阅读次数:
68
导出表结构语句1、执行以下查询 SELECT 表名称 = case when a.colorder=1 then d.name else '' end, 表说明 = case when a.colorder=1 then isnull(f.value,'') else '' end, 序号 = a. ...
分类:
数据库 时间:
2019-11-23 09:14:44
阅读次数:
108
进入正题,准备我们的测试数据 1.我们要筛选的数据为去除 GX 列的重复项 并将所有数据展示出来,如图所示: 1 select t.* from [PeopleCount] as t where t.procedureID='8334' 2.这种情况下我们是不可以使用DISTINCT来去重的,我们可 ...
分类:
数据库 时间:
2019-11-19 13:37:09
阅读次数:
747
IdentityServer4除了提供常规的几种授权模式外(AuthorizationCode、ClientCredentials、Password、RefreshToken、DeviceCode),还提供了可以拓展的授权模式,下面就根据源码简单说下IdentityServer4是如何实现自定义授权 ...
分类:
其他好文 时间:
2019-11-16 00:47:08
阅读次数:
281
# Pandas对缺失值的处理(判断是否为空、删除or丢弃、填充空值) # pandas使用这些函数处理缺失值: # isnull 和 notnull :检验是否是空值,可用于series和df # dropna:丢弃、删除缺失值 # axis:删除行还是列,{0 or “index”,1 or “ ...
分类:
其他好文 时间:
2019-11-13 22:21:49
阅读次数:
309
private string GetSitePath(string webPath, string requestPath, string requestDomain) { //获取当前域名包含的站点目录 string domainPath = GetCurrDomainPath(requestDo... ...
分类:
移动开发 时间:
2019-11-13 12:39:02
阅读次数:
92
1、 SQL ISNULL()、NVL()、IFNULL() 和 COALESCE() 函数 请看下面的 "Products" 表: P_IdProductNameUnitPriceUnitsInStockUnitsOnOrder 1 computer 699 25 15 2 printer 365 ...
分类:
数据库 时间:
2019-11-09 19:40:18
阅读次数:
132
一、Js端 二、Startup.cs配置端 ...
分类:
其他好文 时间:
2019-11-07 13:30:34
阅读次数:
91
Moq 1 My Cases 1.1 简单入门 2 Reference 2.1 Methods 2.2 Matching Arguments 2.3 Properties 2.4 Events 2.5 Callbacks 2.6 Verification 2.7 Customizing Mock B ...