摘要: 001、进入ncbi官网 002、点击blast 0 003、点击download blast 004、点击如下链接: 005、点击下载linux 64位: 下载链接:https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ 006、 阅读全文
posted @ 2023-07-14 22:05 小鲨鱼2018 阅读(829) 评论(0) 推荐(0) 编辑
摘要: 001、设置长度 基础绘图: ggplot(data=mtcars, aes(x=mpg, y=disp, color=factor(cyl))) + geom_point() 绘图如下: 002、设置刻度标签的长度 library(ggplot2) ggplot(data=mtcars, aes( 阅读全文
posted @ 2023-07-14 14:56 小鲨鱼2018 阅读(3336) 评论(0) 推荐(0) 编辑
摘要: R语言中使用hist函数绘制直方图,参数为一个向量。 001、 dat <- c(rep(1, 10), rep(2, 5), rep(3, 6)) ## 参数为一个向量 dat hist(dat) ## 直接绘图 横坐标为区间, 纵坐标为落入该区间的频数 。 002、 break参数用于指定断点, 阅读全文
posted @ 2023-07-14 10:00 小鲨鱼2018 阅读(682) 评论(0) 推荐(0) 编辑