上一页 1 2 3 4 5 6 7 8 ··· 57 下一页

2015年9月24日

python 行转列

摘要: #encoding=utf-8 print '中国' #二维阵列变换 行转化成列,列转化成行 lista=[[1,2,3],[4,5,6],[7,8,9],[10,11,12]] #使用列表推导 listb=[[r[col] for r in lista] for col in... 阅读全文

posted @ 2015-09-24 10:26 雨渐渐 阅读(8620) 评论(0) 推荐(0) 编辑

2015年9月21日

nslookup

摘要: nslookupnslookup ip => hostnamenslookup hostname ===> ip 阅读全文

posted @ 2015-09-21 11:31 雨渐渐 阅读(133) 评论(0) 推荐(0) 编辑

2015年9月18日

c++ 常用数据接口 set

摘要: #include #include #include int main(void) { std::set sites; std::string site0 = "sina.com.cn"; std::string site1 = "sina.com.cn"; std::str... 阅读全文

posted @ 2015-09-18 14:38 雨渐渐 阅读(854) 评论(0) 推荐(0) 编辑

2015年9月16日

shell find and rm

摘要: 按时间删除命令:删除当前目录下30天以前的所有文件:find . -type f -ctime +30 -exec rm -fr {} \; 删除当前目录下30天以前的所有目录:find . -type d -ctime +30 -exec rm -fr {} \; 删除/oracle/123目录下... 阅读全文

posted @ 2015-09-16 14:24 雨渐渐 阅读(1771) 评论(0) 推荐(0) 编辑

shell date

摘要: 1.查看指定时间的时间戳查看当前时间#date +%s查看指定时间#date -d 2008-01-01 +%s 1199116800#date -d 20080101 +%s11991168002.将时间戳转换成date#date -d '1970-01-01 UTC 1199116800 sec... 阅读全文

posted @ 2015-09-16 14:19 雨渐渐 阅读(205) 评论(0) 推荐(0) 编辑

2015年9月14日

统计学中抽样比例一般占百分之多少

摘要: 要具体问题具体分析,一般和要求的误差限、置信区间及总体方差有关系.比如最基本的简单随机抽样,其样本量确定公式就是1/n=1/N+d^2/(u^2*S^2).样本量和误差限成反比,和置信区间及总体方差成正比.请问一堆url怎么算方差。(。。。) 阅读全文

posted @ 2015-09-14 16:09 雨渐渐 阅读(8502) 评论(0) 推荐(0) 编辑

python logging TimedRotatingFileHandler 作用

摘要: max backup count这样的参数,即打印的日志文件数量超过这个阈值,发生rotate,从最老的文件开始清理未亲测。 阅读全文

posted @ 2015-09-14 15:57 雨渐渐 阅读(1147) 评论(0) 推荐(0) 编辑

2015年9月8日

c++ g++3.4.5 g++4.8.2 由编译器引起的编译异常

摘要: #include #include #include class Student {public: Student(std::string& name) { _name = name; } ~Student(){ } void printName(){ ... 阅读全文

posted @ 2015-09-08 22:37 雨渐渐 阅读(468) 评论(0) 推荐(0) 编辑

2015年8月31日

hadoop 蓄水池抽样 分布式抽样

摘要: #!/usr/bin/env python# -*- coding=utf8 -*-import sysimport osimport random#input split 1565 #>>> 3000000/1565.0#1916.932907348243#2000K = 2000pool = [... 阅读全文

posted @ 2015-08-31 23:12 雨渐渐 阅读(403) 评论(0) 推荐(0) 编辑

c++ boost string split trim replace

摘要: http://blog.csdn.net/firebird321/article/details/2207669 阅读全文

posted @ 2015-08-31 18:43 雨渐渐 阅读(459) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 57 下一页

导航