上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 57 下一页

2013年8月5日

均值,方差: 概率质量函数PMF

摘要: __author__ = 'dell'import Pmfimport matplotlib.pyplot as pyplotpmf = Pmf.MakePmfFromList([1, 2, 2, 3, 5])print 'Mean by Pmf ', pmf.Mean()print 'Var by... 阅读全文

posted @ 2013-08-05 19:24 雨渐渐 阅读(1052) 评论(0) 推荐(0) 编辑

Python 字典 Print 格式化

摘要: __author__ = 'dell'ab = {'Swaroop': 'swaroopch@byteofpython.info', 'Larry': 'larry@wall.org', 'Matsumoto': 'matz@ruby-lang.org', 'Spammer': 'spammer@hotmail.com'}print "Swaroop's address is %s" % ab['Swaroop 阅读全文

posted @ 2013-08-05 16:49 雨渐渐 阅读(634) 评论(0) 推荐(0) 编辑

2013年8月3日

直方图:分布的最常用表示方法

摘要: 表示分布最常用的方法就是直方图histogram,这种图用于展示各个值出现的频率和概率import Pmfimport operatorimport matplotlib.pyplot as pyplothist = Pmf.MakeHistFromList([1, 2, 2, 3, 5])vals... 阅读全文

posted @ 2013-08-03 17:49 雨渐渐 阅读(826) 评论(0) 推荐(0) 编辑

2013年8月1日

nutch-1.7 编译

摘要: 转载自:http://peigang.iteye.com/blog/1563288从nutch-1.3开始 本地抓取(单击) 和 分布式抓取(集群)所使用的配置文件和命令单独分开。资源:下载地址:http://archive.apache.org/dist/nutch/1.7/apache-nutc... 阅读全文

posted @ 2013-08-01 11:16 雨渐渐 阅读(1029) 评论(0) 推荐(0) 编辑

众数

摘要: 一个分布的众数就是它的最频繁值。编写一个球众数的函数mode编写一个AllMode函数,返回按频率降序排列的值-频对。__author__ = 'dell'import Pmfimport operatorhist = Pmf.MakeHistFromList([1, 2, 2, 3, 5])pri... 阅读全文

posted @ 2013-08-01 06:12 雨渐渐 阅读(365) 评论(0) 推荐(0) 编辑

Python 排序

摘要: 转载自:http://wiki.python.org/moin/HowTo/SortingOriginal version by Andrew Dalke with a major update by Raymond Hettinger原始版本是Andrew Dalke,然后更新的是Raymond HettingerThere are many ways to use them to sort data and there doesn't appear to be a single, central place in the various manuals describing the 阅读全文

posted @ 2013-08-01 06:07 雨渐渐 阅读(331) 评论(0) 推荐(0) 编辑

2013年7月31日

习题 1-4 经过验证的高质量的数据

摘要: http://wolframalpha.com如何使用 阅读全文

posted @ 2013-07-31 20:45 雨渐渐 阅读(109) 评论(0) 推荐(0) 编辑

习题1-3 求怀孕周期平均值

摘要: __author__ = 'dell'import surveytable = survey.Pregnancies()table.ReadRecords()print "Number of pregnancies ", len(table.records)运行结果:D:\Python27\pyth... 阅读全文

posted @ 2013-07-31 18:34 雨渐渐 阅读(338) 评论(0) 推荐(0) 编辑

2013年7月30日

均值,方差,标准差

摘要: 实际应用:求平均怀孕周期 阅读全文

posted @ 2013-07-30 16:51 雨渐渐 阅读(232) 评论(0) 推荐(0) 编辑

余弦相似度

摘要: 转载自:http://www.ruanyifeng.com/blog/2013/03/cosine_similarity.html评:作者写的通俗易懂。实在不需要改进了,一下仅仅是加深个人印象,便于个人记忆。第一步:分词句子A:我/喜欢/看/电视,不/喜欢/看/电影。句子B:我/不/喜欢/看/电视,也/不/喜欢/看/电影。 第二步:列出所有词我,喜欢,看,电视,电影,不,也。第三步:计算词频句子A:我 1,喜欢 2,看 2,电视 1,电影 1,不 1,也 0。句子B:我 1,喜欢 2,看 2,电视 1,电影 1,不 2,也 1。第四步:写出词频向量句子A:[1, 2, 2, 1, 1, 1, 阅读全文

posted @ 2013-07-30 15:44 雨渐渐 阅读(474) 评论(0) 推荐(0) 编辑

上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 57 下一页

导航