上一页 1 ··· 218 219 220 221 222 223 224 225 226 ··· 337 下一页
摘要: 频数分布有正态分布和偏态分布之分。正态分布是指多数频数集中在中央位置,两端的频数分布大致对称。 偏态分布是指频数分布不对称,集中位置偏向一侧。若集中位置偏向数值小的一侧,称为正偏态分布;集中位置偏向数值大的一侧,称为负偏态分布。 如果频数分布的高峰向左偏移,长尾向右侧延伸称为正偏态分布,也称右偏态分布;同样的,如果频数分布的高峰向右偏移,长尾向左延伸则成为负偏态分布,也称左偏态分布。 峰左... 阅读全文
posted @ 2012-04-17 17:52 emanlee 阅读(72509) 评论(0) 推荐(0)
摘要: Tags in a [Term] stanza The OBO Flat File Format Specification, version 1.0Required tagsid The unique id of the current term. This can be any string. This tag must always be the first tag in any term description Example: id: CAR:0000001 name The term name. Any term may only have one name defined. If 阅读全文
posted @ 2012-04-13 20:23 emanlee 阅读(1281) 评论(0) 推荐(0)
摘要: This diagram would be interpreted as follows: A is a B B is part of C we can infer that A is part of C The is a relation The is a relation in GO is very simple: if we say A is a B... 阅读全文
posted @ 2012-04-13 17:34 emanlee 阅读(420) 评论(0) 推荐(0)
摘要: HashMap是基于哈希表的Map接口的非同步实现。此实现提供所有可选的映射操作,并允许使用null值和null键。此类不保证映射的顺序,特别是它不保证该顺序恒久不变。在java编程语言中,最基本的结构就是两种,一个是数组,另外一个是模拟指针(引用),所有的数据结构都可以用这两个基本结构来构造的,HashMap也不例外。HashMap实际上是一个“链表散列”的数据结构,即数组和链表的结合体。 从上图中可以看出,HashMap底层就是一个数组结构,数组中的每一项又是一个链表。当新建一个HashMap的时候,就会初始化一个数组。/** * The table, resized as necessa 阅读全文
posted @ 2012-04-13 14:39 emanlee 阅读(907) 评论(0) 推荐(1)
摘要: Java中StringTokenizer的一个实例。 代码: StringTokenizer st = new StringTokenizer("this is a test"); while (st.hasMoreTokens()) { System.out.println(st.nextToken()); } 打印出来之后是: this is a test 接下来的实例阐明了Stirng.split方法如何将一个字符串分解成其基本令牌的。 String[] result = "this is a test".split("\\s" 阅读全文
posted @ 2012-04-13 09:44 emanlee 阅读(365) 评论(0) 推荐(0)
摘要: ABS:Annotated regulatory binding sites from orthologous promoters:http://genome.imim.es/datasets/abs2005/abs.html ACTIVITY:Functional DNA/RNA site activity:http://wwwmgs.bionet.nsc.ru/mgs/systems/a... 阅读全文
posted @ 2012-04-01 21:53 emanlee 阅读(8780) 评论(0) 推荐(0)
摘要: 著名的科学杂志《Nature》于1999年刊登了两位科学家D.D.Lee和H.S.Seung对数学中非负矩阵研究的突出成果。该文提出了一种新的矩阵分解思想――非负矩阵分解(Non-negative Matrix Factorization,NMF)算法,即NMF是在矩阵中所有元素均为非负数约束条件... 阅读全文
posted @ 2012-03-30 08:23 emanlee 阅读(4927) 评论(0) 推荐(0)
摘要: 1:右键点击任务栏,工具栏,勾选语言栏。如果没有,操作下边。 2:双击我的电脑,控制面板,语言和区域选项,语言,详细信息,语言栏,勾选在桌面显示语言栏,确定。如果没有,操作下边。 3:双击我的电脑,控制面板,语言和区域选项,语言,详细信息,已安装的服务(取消高级服务前的勾),点击键盘图标,添加,简体中文/美式键盘,确定。 阅读全文
posted @ 2012-03-23 21:32 emanlee 阅读(1716) 评论(0) 推荐(0)
摘要: 为了查找某个研究领域的相关信息,生物学家往往要花费大量的时间,更糟糕的是,不同的生物学数据库可能会使用不同的术语,好比是一些方言一样,这让信息查找更加麻烦,尤其是使得机器查找无章可循。Gene Ontology就是为了解决这种问题而发起的一个项目。 Gene Ontology中最基本的概念是term。GO里面的每一个entry都有一个唯一的数字标记,形如GO:nnnnnnn,还有一个term名,... 阅读全文
posted @ 2012-03-19 20:54 emanlee 阅读(8199) 评论(0) 推荐(0)
摘要: Similar to other algorithm, K-mean clustering has many weaknesses: 1 When the numbers of data are not so many, initial grouping will determine the cluster significantly. 当数据数量不是足够大时,初始化分组很大程度上决定... 阅读全文
posted @ 2012-03-06 11:52 emanlee 阅读(6070) 评论(0) 推荐(0)
上一页 1 ··· 218 219 220 221 222 223 224 225 226 ··· 337 下一页