壹: where后面不能跟聚合函数(sum、avg、count、max、min) having后面可以跟 贰: where和having都能用: select goods_price,goods_name from sw_goods where goods_price>100 select good ...
分类:
其他好文 时间:
2019-12-15 21:39:37
阅读次数:
83
更多大数据分析、建模等内容请关注公众号《bigdatamodeling》 先简单回顾一下WOE的含义。假设x是类别变量或分箱处理过的连续变量,含R个类别或分段,取值为{C1, ..., Cr, ..., CR};y是目标变量,取值为0(Good)或1(Bad)。x和y的频数表如下: 1、概念回顾 先 ...
分类:
其他好文 时间:
2019-12-15 18:40:26
阅读次数:
315
因为只是想分享ghcjs和webgl的使用经验,所以很多地方说的很粗,因为涉及的知识确实很多, 推荐两本书,一本haskell基础的 learn you a haskell for great good,中文翻译为haskell趣学, 网上有在线版.一本webgl入门的 webgl programm... ...
分类:
其他好文 时间:
2019-12-13 00:25:25
阅读次数:
157
版本信息:Faker==3.0.0factory-boy==2.12.0provider: # encoding=utf-8 import randomfrom faker.providers import BaseProviderclass NumProvider(BaseProvider): d... ...
分类:
其他好文 时间:
2019-12-12 10:21:49
阅读次数:
102
Batch Normalization Strong effective or good point Theory of BN ...
分类:
其他好文 时间:
2019-12-09 19:08:59
阅读次数:
71
进程 狭义定义:进程是正在运行的程序的实例(an instance of a computer program that is being executed)。 广义定义:进程是一个具有一定独立功能的程序关于某个数据集合的一次运行活动。它是操作系统动态执行的基本单元,在传统的操作系统中,进程既是基本 ...
分类:
系统相关 时间:
2019-12-07 23:15:20
阅读次数:
169
if-else let age = 4 if age >= 22 { print("Get married") } else if age >= 18 { print("Being a adult") } else if age >= 7 { print("Go to school") } else ...
分类:
其他好文 时间:
2019-12-07 14:47:44
阅读次数:
98
装饰器 概念:是一个闭包,把一个函数当做参数返回一个替代版的函数,本质上就是一个返回函数的函数 简单的装饰器 def func1(): print("sunck is a good man") def outer(func): def inner(): print("*** ** * * ***") ...
分类:
其他好文 时间:
2019-12-07 12:26:58
阅读次数:
67
字符串是以单引号或双引号括起来的任意文本 创建字符串 str1 = "shaoge is a good man!" 字符串运算 字符串连接 str6 = "shaoge is a" str7 = "good man" str8 = str7 +str6 输出重复字符串 str9 = "good" s ...
分类:
其他好文 时间:
2019-12-07 12:13:20
阅读次数:
282
链接: https://vjudge.net/problem/CodeForces 55D 题意: Volodya is an odd boy and his taste is strange as well. It seems to him that a positive integer numb ...
分类:
其他好文 时间:
2019-12-06 00:16:45
阅读次数:
85