随笔分类 -  [31] R

摘要:统计xx内TRUE 的数量 sum(xx)注意,若xx内有NA, 使用sum会返回NA。所以最好使用:sum(xx, na.rm = T) 阅读全文
posted @ 2021-06-12 10:31 emanlee 阅读(1735) 评论(0) 推荐(0) 编辑
摘要:library("packagename",quietly=TRUE) 阅读全文
posted @ 2020-11-13 17:21 emanlee 阅读(231) 评论(0) 推荐(0) 编辑
摘要:From https://blog.csdn.net/u011808596/article/details/80974250 # 先安装各个包 futile.logger - R中类似log4j的日志记录包. 官网:https://github.com/zatonovo/futile.logger 阅读全文
posted @ 2020-11-13 08:14 emanlee 阅读(3735) 评论(0) 推荐(0) 编辑
摘要:R语言画图,参考: http://blog.sina.com.cn/s/blog_1704ff73a0102wtx4.html https://www.yuque.com/shenweiyan/cookbook/nvi8vg https://www.jianshu.com/p/166551f66b4 阅读全文
posted @ 2020-11-08 23:32 emanlee 阅读(439) 评论(0) 推荐(0) 编辑
摘要:Check out the JRI/rJava project which provides a Java/R interface. After you download the package, see the examples directory. Another option is to us 阅读全文
posted @ 2020-11-08 23:22 emanlee 阅读(324) 评论(0) 推荐(0) 编辑
摘要:示例: list.files("APP整理") #list.files命令得到"APP整理”文件夹下所有文件夹的名称 list.files('C:\\Users\\yangh\\Desktop\\cs',pattern="*.csv") 读取一个文件夹里面的全部CSV文件 regex {base} 阅读全文
posted @ 2020-11-06 10:55 emanlee 阅读(3645) 评论(0) 推荐(0) 编辑
摘要:> BiocManager::install("curl") Bioconductor version 3.10 (BiocManager 1.30.10), R 3.6.0 (2019-04-26)Installing package(s) 'curl'trying URL 'https://cr 阅读全文
posted @ 2020-11-05 19:18 emanlee 阅读(990) 评论(0) 推荐(0) 编辑
摘要:install.packages("tidyr") ERROR: compilation failed for package ‘tidyr’ 解决方法: 安装其他版本的,不要最新版本。 make: *** [cpp11.o] Error 1ERROR: compilation failed for 阅读全文
posted @ 2020-11-03 09:13 emanlee 阅读(584) 评论(0) 推荐(0) 编辑
摘要:CentOS 7 R version 3.6.0 (2019-04-26) -- "Planting of a Tree"Copyright (C) 2019 The R Foundation for Statistical ComputingPlatform: x86_64-redhat-linu 阅读全文
posted @ 2020-11-02 15:52 emanlee 阅读(976) 评论(0) 推荐(0) 编辑
摘要:> install.packages("farver")Installing package into ‘/usr/lib64/R/library’(as ‘lib’ is unspecified)trying URL 'https://mirrors.bfsu.edu.cn/CRAN/src/co 阅读全文
posted @ 2020-11-02 09:07 emanlee 阅读(1533) 评论(0) 推荐(0) 编辑
摘要:1、查看已加载的包(.packages())注意外面的括号和前面的点不能省。 包被安装后,在使用前需要加载。加载包使用命令 library(包名),比如library(codetools)。 查看有哪些包是被加载的,使用命令(.packages()) ,注意小括号和点号不能省略。 2、卸除已加载的包 阅读全文
posted @ 2020-11-01 23:04 emanlee 阅读(10851) 评论(0) 推荐(0) 编辑
摘要:ERROR: failed to lock directory ‘/usr/lib64/R/library’ for modifyingTry removing ‘/usr/lib64/R/library/00LOCK-stringi’ 出现错误提示:ERROR: failed to lock di 阅读全文
posted @ 2020-11-01 21:57 emanlee 阅读(1454) 评论(0) 推荐(0) 编辑
摘要:pdf("h20.pdf",width =6,height = 5 ) plot ... dev.off() 第一种png格式 png(file="myplot.png", bg="transparent") 画图程序 dev.off() 第二种jpeg格式 jpeg(file="myplot.jp 阅读全文
posted @ 2020-11-01 21:10 emanlee 阅读(778) 评论(0) 推荐(0) 编辑
摘要:windows下命令行调用R脚本 1、将R.exe所在路径加到环境变量path下,路径一般为C:\Program Files\R\R-3.0.1\bin2、在windows 命令行中敲入 调用命令:r CMD BATCH D:\RWORKSPACE\CMD_TEST.R (注意 CMD BATCH 阅读全文
posted @ 2020-10-30 08:17 emanlee 阅读(2238) 评论(0) 推荐(0) 编辑
摘要:df1<-data.frame(id=c(1,2,3,4), value=c(10,20,30,40)) df2<-data.frame(col1=c(1,2,3,4), col2=c(4,3,2,1)) df2[] <- lapply(df2, function(x) { inds <- matc 阅读全文
posted @ 2020-07-29 21:35 emanlee 阅读(167) 评论(0) 推荐(0) 编辑
摘要:R语言install.packages("jpeg")时报错 In file included from read.c:1:0: rjcommon.h:11:21: fatal error: jpeglib.h: No such file or directory rjcommon.h:11:21: 阅读全文
posted @ 2020-05-15 22:55 emanlee 阅读(1310) 评论(0) 推荐(0) 编辑
摘要:RStudio中,出现中文乱码问题的解决方案解决步骤:1、设置RStudio文本显示的默认编码:RStudio菜单栏的Tools -> Global Options2、选择General -> Default Text Encoding,点击Change:3、在弹出的编码中,选择UTF-8编码。4、 阅读全文
posted @ 2020-05-15 16:42 emanlee 阅读(9608) 评论(0) 推荐(0) 编辑
摘要:I would like to iterate over a dataframe and plot several graphs over several pages. For instance, an iteration over the dataframe will result in 20 p 阅读全文
posted @ 2020-04-10 18:29 emanlee 阅读(788) 评论(0) 推荐(0) 编辑
摘要:a = c(175, 168, 168, 190, 156, 181, 182, 175, 174, 179)b = c(185, 169, 173, 173, 188, 186, 175, 174, 179, 180)x<-t.test(a,b)str(x)class(x)> str(x)List 阅读全文
posted @ 2018-07-01 11:30 emanlee 阅读(569) 评论(0) 推荐(0) 编辑
摘要:Treat it as a data.frame:set.seed(1)x <- sample(30, 100, TRUE)summary(x)# Min. 1st Qu. Median Mean 3rd Qu. Max. # 1.00 10.00 15.00 16.03 23.25 30.00 s 阅读全文
posted @ 2018-06-30 02:21 emanlee 阅读(222) 评论(0) 推荐(0) 编辑