- 博客(5)
- 资源 (2)
- 收藏
- 关注
转载 Stepwise Logistic Regression
Stepwise regression is a semi-automated process of building a model by successively adding or removing variables based solely on the t-statistics of their estimated coefficients. Properly used, the
2013-10-29 19:31:48 2072
原创 VIM学习笔记
详情请参阅附件中上传的Vim用户手册中文版 说明: (N)为Normal模式 (I) 为Insert模式 大小写敏感 1. hjkl:左下上右 (N) 2. x :删除光标所在字符,后续字符往前移动 (N) 3. dd: 删除光标所在行,下面的行往上移 (N) 4. J:把下一行接在光标所在行,即删除光标所在行末的'\n',增加一个空格,删除下一行行首的
2013-07-03 14:07:07 316
转载 In-place Merge Sort 原地并归排序
一般在提到Merge Sort时,大家都很自然地想到Divide-and-Conqure, O(nlgn)的时间复杂度以及额外的O(n)空间。O(n)的extra space似乎成了Merge Sort最明显的缺点,但实际上这一点是完全可以克服的,也就是说,我们完全可以实现O(nlgn) time 以及 O(1) space 的Merge Sort。对于这种不用额外空间(即常数大小的额外空间)
2013-05-15 09:41:54 579
原创 Python学习笔记
1. Eclipse多行注释 ctrl+/ 2. Tuple, string and number is immutable, while list is mutable. >>> t = 12345, 54321, 'hello!' >>> t[0] = 88888 Traceback (most recent call last): File "", line 1, i
2013-03-12 14:58:42 377
原创 Introduction to Data Mining
Notes from Introduction to Data Mining, Pang-Ning Tan, Michael Steinbach, Vipin Kumar, 机械工业出版社 1. Process of KDD in databases:Input data -> Data Preprocessing -> Postprocessing-> Information
2013-03-12 14:57:22 1246
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人