Skip to content

Latest commit

 

History

History
46 lines (22 loc) · 1.15 KB

File metadata and controls

46 lines (22 loc) · 1.15 KB

MySQL null与not null和null与空值''的区别

  1. 我字段类型是not null,为什么我可以插入空值

  2. 为毛not null的效率比null高

  3. 判断字段不为空的时候,到底要 select * from table where column <> '' 还是要用 select * from table wherecolumn is not null 呢。

https://segmentfault.com/a/1190000009540449

已经掌握的 TODO

Labels in Go

goto:

break: 结束标签标记的循环或switch. fallthrough:继续执行 last case.

continue: 继续标签标记的大循环的下一次循环.

https://medium.com/golangspec/labels-in-go-4ffd81932339

Q:有了方差, 为啥还要标准差

A: 方差的单位是平方后的,量纲和原始值不一致,开方之后的标准差则单位一致。 A: 为什么方差要平方而不是取绝对值.

numpy使用技巧之数组过滤

https://blog.csdn.net/linzch3/article/details/58584865

Python __repr__()方法:显示属性

https://blog.csdn.net/csdn_mr_h/article/details/90414524

Python3入门机器学习 经典算法与应用

  1. train test split.

np.random.shuffle(x)与np.random.permutation(x)

https://www.cnblogs.com/keye/p/10794322.html