会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
首页
新随笔
订阅
管理
上一页
1
···
197
198
199
200
201
202
203
204
205
···
337
下一页
2014年10月11日
R, add new row to data.frame/dataframe 添加新的一行
摘要: df<-NULL new_row<-data.frame(colA="xxx",colB=123) df<-rbind(df,new_row)
阅读全文
posted @ 2014-10-11 07:20 emanlee
阅读(951)
评论(0)
推荐(0)
2014年10月10日
ggplot2 subscript in x-axis labels(ticks, legend)
摘要: #==============================# ggplot2: subscript in x-axis labels(ticks) rm(list=ls(all=TRUE))library(ggplot2)data <- data.frame(names=tolow...
阅读全文
posted @ 2014-10-10 08:52 emanlee
阅读(2726)
评论(0)
推荐(0)
2014年10月2日
ggplot ggplot2 画图
摘要: 折线图-ggplot2 http://blog.163.com/yugao1986@126/blog/static/6922850820131161531421/http://blog.sina.com.cn/s/blog_7cffd1400101f50v.html《R Graphics Cookb...
阅读全文
posted @ 2014-10-02 08:30 emanlee
阅读(856)
评论(0)
推荐(0)
2014年9月28日
Linux Shell文件差集
摘要: file1-file2 => file3file1=/data/aaafile2=/data/bbbfile3=/data/cccsort -m $file3
阅读全文
posted @ 2014-09-28 17:24 emanlee
阅读(908)
评论(0)
推荐(0)
2014年9月20日
linux ps aux 结果解释
摘要: # ps aux | moreUSER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMANDaimin 13362 99.1 13.6 12942520 12641232 ? R 13:12 445:48 /usr/local/lib64/R/bin...
阅读全文
posted @ 2014-09-20 20:47 emanlee
阅读(7146)
评论(0)
推荐(0)
2014年9月9日
perl常用字符串函数
摘要: 1、$position = index(string,substring,skipchars); 该函数返回子串substring在字符串string中的位置,如果不存在,则返回-1;参数skipchars是可选参数,表示查找之前跳过的字符数,即:从该位置处开始查找; 2、rindex(string
阅读全文
posted @ 2014-09-09 13:11 emanlee
阅读(1436)
评论(0)
推荐(0)
2014年8月31日
Oracle中用一个表的数据更新另一个表的数据
摘要: update tbl1 a set (a.col1, a.col2) = (select b.col1, b.col2 from tbl2 b where a.key = b.key) where a.key in(select key from tbl2)
阅读全文
posted @ 2014-08-31 18:09 emanlee
阅读(754)
评论(0)
推荐(0)
2014年8月23日
VennDiagram 画文氏图/维恩图/Venn
摘要: 在线画韦恩图(Draw venn diagram online)网站: http://jura.wi.mit.edu/bioc/tools/venn.php http://bioinformatics.psb.ugent.be/webtools/Venn/ http://bioinfogp.cnb.
阅读全文
posted @ 2014-08-23 22:08 emanlee
阅读(6096)
评论(0)
推荐(0)
2014年8月22日
Linux和Windows上升级R语言
摘要: 注意:R的升级必须先卸载(在R的目录中运行 make uninstall;或运行 yum remove R )再重新安装(下载/解压/configure/make/make install) Linux (RedHat, CentOS)上升级R语言: sudo yum install R Windo
阅读全文
posted @ 2014-08-22 10:55 emanlee
阅读(10255)
评论(0)
推荐(0)
2014年8月16日
mysql 字符串函数
摘要: 对于针对字符串位置的操作,第一个位置被标记为1。 ASCII(str) 返回字符串str的 最左面字符的ASCII代码值。如果str是空字符串, 返回0。如果str是NULL,返回NULL。 mysql> select ASCII('2'); -> 50mysql> select ASCII(2);
阅读全文
posted @ 2014-08-16 08:53 emanlee
阅读(1211)
评论(0)
推荐(0)
上一页
1
···
197
198
199
200
201
202
203
204
205
···
337
下一页