posted @ 2017-06-14 11:02
papering
阅读(257)
推荐(0)
posted @ 2017-06-13 17:11
papering
阅读(219)
推荐(0)
摘要:
使用文本编辑器 - 廖雪峰的官方网站 https://www.liaoxuefeng.com/wiki/1016959663602400/1017024645952992 直接输入python进入交互模式,相当于启动了Python解释器,但是等待你一行一行地输入源代码,每输入一行就执行一行。 直接运
阅读全文
posted @ 2017-06-13 16:09
papering
阅读(441)
推荐(0)
摘要:
http://research.google.com/archive/mapreduce.html
阅读全文
posted @ 2017-06-12 18:07
papering
阅读(263)
推荐(0)
摘要:
[root@hadoop1 nlp]# python sqlserver_t.py Traceback (most recent call last): File "sqlserver_t.py", line 1, in <module> import pymssqlImportError: lib
阅读全文
posted @ 2017-06-12 17:26
papering
阅读(1462)
推荐(0)
摘要:
https://zhuanlan.zhihu.com/p/31674972 https://rainmanwy.github.io/Python的final-Class/
阅读全文
posted @ 2017-06-12 16:47
papering
阅读(231)
推荐(0)
posted @ 2017-06-10 16:54
papering
阅读(268)
推荐(0)
摘要:
js 获取文本 //获取标签机器子标签的所有文本内容 var box = document.getElementById('box'); var box2 = box.innerText; console.log(box2); product.xpath("div//div[@class='a-ro
阅读全文
posted @ 2017-06-09 17:39
papering
阅读(581)
推荐(0)
posted @ 2017-06-08 23:45
papering
阅读(168)
推荐(0)
摘要:
http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386819196283586a37629844456ca7e5a7faa9b94ee8000
阅读全文
posted @ 2017-06-08 23:09
papering
阅读(212)
推荐(0)
摘要:
w http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/0013747381369301852037f35874be2b85aa318aad57bda000 第一个缺点就是运行速度慢,和
阅读全文
posted @ 2017-06-08 22:44
papering
阅读(567)
推荐(0)
摘要:
import reimport tracebackfrom itertools import chainfrom functools import partialfrom timeit import default_timer as timerfrom .decorators import deco
阅读全文
posted @ 2017-06-08 22:43
papering
阅读(477)
推荐(0)
摘要:
In mathematics, a stiff equation is a differential equation for which certain numerical methods for solving the equation are numerically unstable, unl
阅读全文
posted @ 2017-06-08 19:19
papering
阅读(477)
推荐(0)
摘要:
x = 0 :0.02:pi y = sin(x).*exp((2*x+3)) plot(x,y)
阅读全文
posted @ 2017-06-08 18:46
papering
阅读(149)
推荐(0)
摘要:
http://legacy.python.org/dev/peps/pep-0008/ Object type comparisons should always use isinstance() instead of comparing types directly. When checking
阅读全文
posted @ 2017-06-08 18:30
papering
阅读(626)
推荐(0)
摘要:
w http://legacy.python.org/dev/peps/pep-0008/ Yes: if foo.startswith('bar'):No: if foo[:3] == 'bar':
阅读全文
posted @ 2017-06-08 18:29
papering
阅读(156)
推荐(0)
摘要:
方差variance 统计中的方差(样本方差)是每个样本值与全体样本值的平均数之差的平方值的平均数。V 离差平方和(Sum of Squares of Deviations)是各项与平均项之差的平方的总和。SS SS = V N 总体方差 数据个数 SS/N 样本方差 数据个数减一 SS/N 1 离
阅读全文
posted @ 2017-06-07 22:23
papering
阅读(184)
推荐(0)
摘要:
py 3.6 python (2.7) py 3.6 py m pip install upgrade pip py m pip install numpy scipy matplotlib ipython jupyter pandas sympy nose py m pip install nlt
阅读全文
posted @ 2017-06-06 22:14
papering
阅读(136)
推荐(0)
摘要:

阅读全文
posted @ 2017-06-06 17:46
papering
阅读(133)
推荐(0)
摘要:
https://docs.python.org/3/library/threading.html Return the ‘thread identifier’ of the current thread. This is a nonzero integer. Its value has no dir
阅读全文
posted @ 2017-06-05 22:03
papering
阅读(607)
推荐(0)
posted @ 2017-06-05 12:29
papering
阅读(148)
推荐(0)
posted @ 2017-06-05 12:26
papering
阅读(119)
推荐(0)
posted @ 2017-06-03 00:54
papering
阅读(148)
推荐(0)
摘要:
http://byvoid.github.io/slides/slmpime/index.html https://www.byvoid.com/zht/blog/slm_based_pinyin_ime
阅读全文
posted @ 2017-06-02 12:18
papering
阅读(154)
推荐(0)
摘要:
<!DOCTYPE html Title 立项背景: 0 突然被限制,无法访问原amazon_asin_reviews_us数据库; 1 原数据库asin类别、厂家信息不明; 2 自然语言处理“通过reviews得出差评原因”,必须出结果,去证明想法的可行性; 3 选择Huawei手机 https:
阅读全文
posted @ 2017-06-01 21:30
papering
阅读(295)
推荐(0)
摘要:
import os, sys os_sep = os.sep base_dir = os.path.dirname(os_sep.join(os.path.abspath(__file__).split(os_sep)[0: 2])) sys.path.append(base_dir) from c
阅读全文
posted @ 2017-06-01 21:06
papering
阅读(203)
推荐(0)
摘要:
Bobby Luo 罗如意(18907295660@189.cn) 2011年7月 http://weibo.com/cquptvlry 电子商务中的BI应用初探 系统架构 对整个数据仓库的架构进行规划 数据库管理 数据库的DBA 需求分析 了解业务部门的需求,或者主动提出需求 ID分析 对生产系统
阅读全文
posted @ 2017-05-27 20:27
papering
阅读(252)
推荐(0)
posted @ 2017-05-26 08:43
papering
阅读(123)
推荐(0)
posted @ 2017-05-25 22:26
papering
阅读(135)
推荐(0)
摘要:
https://baike.baidu.com/item/缺失值/2336661 缺失值是指粗糙数据中由于缺少信息而造成的数据的聚类、分组、删失或截断。它指的是现有数据集中某个或某些属性的值是不完全的。 中文名缺失值外文名Missing value拼 音Quē shī zhí学 科数学产生原因机械和
阅读全文
posted @ 2017-05-25 12:41
papering
阅读(234)
推荐(0)
posted @ 2017-05-22 20:42
papering
阅读(463)
推荐(0)
posted @ 2017-05-20 21:35
papering
阅读(169)
推荐(0)
摘要:
https://baike.baidu.com/item/随机抽样/6381136?fr=ge_ala 按照随机的原则,即保证总体中每一个对象都有已知的、非零的概率被选入作为研究的对象,保证样本的代表性。 随机抽样法就是调查对象总体中每个部分都有同等被抽中的可能,是一种完全依照机会均等的原则进行的抽
阅读全文
posted @ 2017-05-20 03:50
papering
阅读(326)
推荐(0)
posted @ 2017-05-20 01:24
papering
阅读(118)
推荐(0)
posted @ 2017-05-20 01:23
papering
阅读(166)
推荐(0)
posted @ 2017-05-19 22:11
papering
阅读(148)
推荐(0)
posted @ 2017-05-19 21:03
papering
阅读(164)
推荐(0)
posted @ 2017-05-19 00:18
papering
阅读(156)
推荐(0)
posted @ 2017-05-19 00:12
papering
阅读(170)
推荐(0)
posted @ 2017-05-19 00:11
papering
阅读(144)
推荐(0)