摘要:
SELECT * FROM 表名称,然后执行。 阅读全文
摘要:
x : (n,) array or sequence of (n,) arrays 这个参数是指定每个bin(箱子)分布的数据,对应x轴 bins : integer or array_like, optional 这个参数指定bin(箱子)的个数,也就是总共有几条条状图 normed : bool 阅读全文
摘要:
http://www.jianshu.com/p/1c6efdbce226 阅读全文
摘要:
从tushare上下载'002337'的数据 做ADF Test: ADF检验结果 p-value要小于0.05.等于0是最好的。平稳性好,非随机游走,可统计套利。 ADF Test Statistic要小于Critical Value,小于1%时平稳性最好,5%次之,依次类推。 如果ADF Tes 阅读全文
摘要:
create table table_user( id int(3), name varchar(8), password varchar(20));#创建一个表,有3个字段 alter table table_user rename to tab_user;#更改表名 alter table tab_user add email varchar(255) not null;#添加一个字段,... 阅读全文
摘要:
用训练好的knn做预测 阅读全文
摘要:
一般而言高偏差意味着欠拟合,高方差意味着过拟合。关系见:http://www.cnblogs.com/TenosDoIt/p/3712590.html 阅读全文