摘要: 今天第一次用groupby# -*- coding: utf-8 -*-"""Created on Mon Nov 03 18:27:22 2014@author: Luo Hao at Tubic"""import pandas as pdif __name__ == '__main__': ... 阅读全文
posted @ 2014-11-03 19:12 林中细雨 阅读(537) 评论(0) 推荐(0)
摘要: False-Color Plots三变量方法表达,讲了一堆,没太仔细看。一些作图原则等等。# -*- coding: utf-8 -*-"""Created on Sun Nov 02 14:47:33 2014@author: Luo Hao at Tubic"""import matplotli... 阅读全文
posted @ 2014-11-02 14:47 林中细雨 阅读(320) 评论(0) 推荐(0)
摘要: http://statsmodels.sourceforge.net/devel/examples/notebooks/generated/tsa_arma_0.htmlhttp://statsmodels.sourceforge.net/devel/examples/notebooks/gener... 阅读全文
posted @ 2014-11-01 14:53 林中细雨 阅读(290) 评论(0) 推荐(0)
摘要: the main components ofevery time series: Trend, Seasonality, Noise and Other. (大势,小周期,噪音和其他)。以下一段具体解释。The trend may be linear or nonlinear, and we may... 阅读全文
posted @ 2014-11-01 14:39 林中细雨 阅读(253) 评论(0) 推荐(0)
摘要: 指数加权平均值 一下是基于pandas的。应该是和exponential smoothing or Holt–Winters method 是基于一个基础的。DEMO, 原址:http://connor-johnson.com/2014/02/01/smoothing-with-exponentia... 阅读全文
posted @ 2014-11-01 14:38 林中细雨 阅读(1358) 评论(0) 推荐(0)
摘要: KaKs_Calculatoradopts model selection and model averaging to calculate nonsynonymous (Ka) and synonymous (Ks) substitution rates, attempting to includ... 阅读全文
posted @ 2014-10-29 21:45 林中细雨 阅读(1197) 评论(0) 推荐(0)
摘要: PAL2NAL is a program that converts a multiple sequence alignment of proteins and the corresponding DNA (or mRNA) sequences into a codon alignment.http... 阅读全文
posted @ 2014-10-29 21:42 林中细雨 阅读(2384) 评论(0) 推荐(0)
摘要: Clustal, Multiple alignment of nucleic acid and protein sequences.official website:http://www.clustal.org/使用biopython, 有相应的接口可以直接调用clustalw.from Bio.A... 阅读全文
posted @ 2014-10-29 21:06 林中细雨 阅读(732) 评论(0) 推荐(0)
摘要: 这里需要认真学习一下。 阅读全文
posted @ 2014-10-28 15:18 林中细雨 阅读(173) 评论(0) 推荐(0)
摘要: class Parent(object): def __init__(self, **kwargs): if kwargs.has_key('age'): self.__age = kwargs['age'] if kwargs.has_key... 阅读全文
posted @ 2014-10-28 11:22 林中细雨 阅读(175) 评论(0) 推荐(0)