R语言
文章平均质量分 85
gavin_cdc
这个作者很懒,什么都没留下…
展开
-
使用R语言软件(Rstudio)抓取天猫商品数据示例 2020-11-27
#先贴一下总的代码,后面有重点!# https://www.jianshu.com/p/f768cbf5ee0c# 判断网页编码library(rvest)f <- tempfile()#创建临时文件download.file("https://list.tmall.com/search_product.htm?q=%B5%CDGI&type=p&vmarket=&spm=a2156.1676643.a2227oh.d100&from=mallfp..p.原创 2020-11-27 17:19:34 · 1920 阅读 · 0 评论 -
R ggplot绘制双纵坐标轴
p1 <- ggplot(data = DNA_result, mapping = aes( x= num, y = nd)) + geom_point(colour = "red") + xlab( "样本序号") + ylab("浓度")+ theme(plot.caption = element_text(hjust = 0))+ theme_bw()p1p2 <- ggplot(data = DNA_result, mapping = aes( x= nu..原创 2020-06-08 20:42:11 · 2944 阅读 · 0 评论 -
R | dummyVars函数,分类变量设置哑变量
dummyVars函数:dummyVars creates a full set of dummy variables (i.e. less than full rank parameterization----建立一套完整的虚拟变量survey<-data.frame(service=c("very unhappy","unhappy","neutral","happy","ve...转载 2020-03-11 13:23:27 · 8205 阅读 · 8 评论 -
R |哑变量的设置
原文来源:1:https://www.sohu.com/a/199698358_4893122:https://blog.csdn.net/qq_42458954/article/details/86694980在构建回归模型时,如果自变量X为连续性变量,回归系数β可以解释为:在其他自变量不变的条件下,X每改变一个单位,所引起的因变量Y的平均变化量;如果自变量X为二分类变量,例如是否饮酒(...转载 2020-03-13 18:20:31 · 3817 阅读 · 0 评论 -
R 相关性分析
R 相关性分析1. 相关性矩阵计算:加载mtcars数据> setwd("E:\\Rwork")> data("mtcars")> head(mtcars) mpg cyl disp hp drat wt qsec vs am gear carbMazda RX4 21.0 6 160 110...转载 2019-12-11 14:50:02 · 2303 阅读 · 0 评论 -
查看某行数字为0的元素有多少个
xx <- data.frame(t(data.frame(c(0:20,0:3,0:5),c(0:10,0:5,0:13))))aa <- xx[1,]==0length(which(aa==TRUE))原创 2019-12-10 16:11:59 · 1267 阅读 · 0 评论 -
R Corrplot软件包简介,绘制相关热图
Corrplot软件包简介介绍所述corrplot包是相关矩阵,置信区间的图形显示。它还包含一些进行矩阵重新排序的算法。另外,corrplot擅长细节,包括选择颜色,文本标签,颜色标签,布局等。可视化方法有七个可视化方法(参数method中)corrplot包,命名"circle","square","ellipse","number","shade","color","pie"。...翻译 2019-10-17 15:32:05 · 33802 阅读 · 10 评论 -
R语言将数据框中的字符类型数字转换为数值
转载:https://blog.csdn.net/Candle_light/article/details/84374814场景1我现在有一个数据框datexpr,里面的数字都是以字符型表示的,像这样> datexpr[1,1][1] " 1.143773961"12现在我想把这个数据框中的字符型数字全部转为数值型数字使用下面语句即可datexpr2=as.data...转载 2019-10-17 14:56:54 · 48792 阅读 · 4 评论 -
R| require()
https://github.com/knausb/vcfR_win-builder/issues/1mclapplyrequire("parallel")原创 2019-10-16 15:12:26 · 905 阅读 · 0 评论 -
R语言特征值相关性分析
转载:http://www.sohu.com/a/200219694_278730也可以看一下这篇文章。接触这么多组学数据,大家肯定做过各种相关性分析。大到几个转录组样本的整体相关性分析,小到挑选了一些候选基因看它们在不同样本中的表达模式相关性。当我们做完了相关性分析的时候,常常会用下面这种图形来展示:那么问题来了,有没有别的方法,可以让我的相关性分析展现方式更高大上呢?请出今...转载 2019-10-16 09:28:00 · 4106 阅读 · 1 评论 -
R| 在rsudio运行biocLite()不会再出现不能写入不能更新的问题。
Ubuntu安装bioconductor,当biocLite()时显示不能写入,几个包不能更新?这时,可以在终端打开R(sudo R),然后运行source(“ ”)biocLite()这时会显示是否更新all/some/no选择all即可完成更新现在使用的是:(2017 /7 /25改)sudo Rupdate.packages()if (!require...原创 2019-07-25 18:50:54 · 2468 阅读 · 1 评论 -
R| 滑动平均值
Moving Averages inR示例:require(smooth)require(Mcomp)sma(M3$N2457$x, h=18, silent=FALSE)sma(M3$N2568$x, h=18, interval=TRUE)x <- c(1,3,6,10,20,22,16,12,18,24,42,8,16,15)x <- data.frame(...原创 2019-08-19 23:25:03 · 6097 阅读 · 0 评论 -
R |mixed effect model
---title: "mixed effect model"author: "gavin"date: "2019年8月16日"output: html_document---```{r setup, include=FALSE}knitr::opts_chunk$set(echo = TRUE)``````{r}library(lme4)politeness=read....原创 2019-08-16 17:20:09 · 1922 阅读 · 0 评论 -
R|分类变量设置为0,1和1,2的区别
图1:性别变量设置为1,2且为数值型;图2:性别设置为0,1,也是数值型。两者没有变化!原创 2019-09-04 16:03:43 · 8270 阅读 · 0 评论 -
R| ifelse、which、%in%的用法
ref: 在R学习过程中,遇到了ifelse、which、%in%,下面分别举例,说明他们的用法。1、ifelseifelse(test, yes, no)test为真,输出yes值,否则输出no值。举例如下:> x <- c(1,1,1,0,0,1,1)> ifelse(x != 1, 1, 0) #若果x的值不等于1,输出1,否则输出0[1] 0 ...转载 2019-09-04 23:45:28 · 917 阅读 · 1 评论 -
ubuntu16.04 卸载、重装Rstudio
卸载rstudio,参考Rstudio的终极安装 | 关于ubuntu安装最新Rstudio后闪退的问题卸载Rstudiosudo apt-get remove rstudio安装下载rstudio安装包放到Downloadssudo apt-get install gdebi-corecd Downloads/sudo gdebi rstudio-1.1.463-a...原创 2019-09-09 22:18:02 · 5065 阅读 · 0 评论 -
安装R遇到的奇葩问题
1.在安装R之前在source.list的最前面加上源(例如清华的源)2.在最后面加上 .deb的文件To obtain the latest R 3.5 packages, add an entry likedeb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/ordeb https://cloud.r...原创 2019-04-11 15:46:44 · 983 阅读 · 0 评论 -
R| 分类散点图之间连线
散点图:x轴为分类变量# 创建示例数据集a <- rnorm(1:10,5)b <- rnorm(1:10,6)c <- rnorm(1:10,7)abc <- data.frame(matrix(rnorm(1:30,5),nrow = 30))bj <- data.frame(rep(c("a","b","c"),each=10))bj2 <...原创 2019-08-02 16:52:37 · 9053 阅读 · 3 评论 -
R| worldmet
https://github.com/davidcarslaw/worldmethttps://blog.csdn.net/kMD8d5R/article/details/81160916worldmet - R包,用于访问NOAA综合地面数据库(ISD)气象观测worldmet提供了一种从NOAA集成表面数据库(ISD)访问数据的简便方法。 ISD包含来自世界各地的35,000多...翻译 2019-07-10 21:10:49 · 1464 阅读 · 2 评论 -
R| 混合效应模型,lme4
## ref: A very basic tutorial for performing linear mixed effects analyses## 分类变量pitch = c(233,204,242,130,112,142)sex = c(rep("female",3),rep("male",3))my.df = data.frame(sex,pitch)my.dfxmdl =...原创 2019-04-09 23:45:16 · 12586 阅读 · 1 评论 -
Rstudio server 配置
https://support.rstudio.com/hc/en-us/articles/200552316-Configuring-the-ServerRStudio Server: Configuring the ServerOverviewRStudio is configured by adding entries to two configuration files (no...转载 2019-04-02 21:06:55 · 3933 阅读 · 0 评论 -
Rstudio-server 安装汇总
参考1#查看是否安装正确 sudo rstudio-server verify-installation ## 启动 sudo rstudio-server start ## 查看状态 sudo rstudio-server status ## 停止 sudo rstudio-server stop ## 重启sudo rstudio-server restart## 查...原创 2019-04-02 20:17:17 · 2528 阅读 · 0 评论 -
安装Rstudio-server,使用官网的程序下载安装不合理?其对应的安装包是Ubuntu14,而我的系统是Ubuntu18.
Rstudio-server网站下载的显示:Debian 8 / UbuntuTo download and install RStudio Server open a terminal window and execute the following commands (corresponding to the 32 or 64-bit version as appropriate). ...原创 2019-04-11 16:27:19 · 1002 阅读 · 0 评论 -
Rstudio server在Ubuntu16.04中安装遇到问题
RStudio install on Ubuntu 16.10 fails due to libgstreamerhttps://stackoverflow.com/questions/40413323/rstudio-install-on-ubuntu-16-10-fails-due-to-libgstreamer/43586708#43586708Rstudio的下载网站:从中可以看出...原创 2019-04-10 23:45:29 · 451 阅读 · 0 评论 -
卸载Rstudio
1. 卸载sudo apt-get remove rstudio2. 卸载配置文件sudo apt-get remove --purge rstudio3. 更新sudo apt-get updateref1ref2原创 2019-04-10 22:20:57 · 8279 阅读 · 2 评论 -
Rstudio-server无法安装,但可以安装Rstudio & 安装bioconductor遇到问题:“installation path not writeable, unable to up”
# 安装Rstudio下载Rstudio后将安装包放到home文件夹中,然后点击直接进行安装。在终端里直接输入rstudio运行。# 安装bioconductorsource("https://bioconductor.org/biocLite.R")biocLite()遇到以下问题:>biocLite()BioC_mirror: https://bioco...原创 2019-04-10 21:01:21 · 11693 阅读 · 5 评论 -
每隔几行选取数据
https://blog.csdn.net/gpwner/article/details/69048465leadership[c(TRUE, FALSE, FALSE),]转载 2019-04-19 08:35:15 · 3498 阅读 · 0 评论 -
R语言数据表匹配和拼接-merge函数
R中的merge函数类似于Excel中的Vlookup,可以实现对两个数据表进行匹配和拼接的功能。merge(x, y, by = intersect(names(x), names(y)), by.x = by, by.y = by, all = FALSE, all.x = all, all.y = all, sort = TRUE, suffixes = c(".x",".y"), ...转载 2019-05-15 20:44:06 · 14000 阅读 · 3 评论 -
线性回归提取P值
https://cloud.tencent.com/developer/ask/73453注意summary(fit)生成包含所需所有信息的对象。β,Se,t和p向量存储在它中。通过选择系数矩阵的第4列(存储在摘要对象中)获得p值:summary(fit)$coefficients[,4] summary(fit)$r.squared试一试str(summary(fit))若要查看...转载 2019-07-04 23:39:10 · 8636 阅读 · 1 评论 -
R语言做线性回归
转:https://blog.csdn.net/blackrosetian/article/details/782220831.回归的多面性回归类型 用途 简单线性 个量化的解释变量来预测一个量化的响应变量(一个因变量、一个自变量) 多项式 一个量化的解释变量预测一个量化的响应变量,模型的关系是 n阶多项式(一个预测变量,但同时包含变量的幂) 多元线性...转载 2019-07-04 22:00:17 · 67855 阅读 · 2 评论 -
R markdown
转:https://zhuanlan.zhihu.com/p/24884324本文主要阐述如何使用R Markdown写报告。与本文配套的文献 Introduction to interactive documents, 将像你展示如何通过将R Markdown 报告转变成为带有Shiny组件的交互式文档。R MarkdownR Markdown是通过R语言制作动态文档的文件格式。...转载 2019-07-09 15:31:41 · 467 阅读 · 0 评论 -
linux rstudio can not input chinese
$ wget http://ikuya.info/tmp/fcitx-qt5-rstudio.tar.gz$ tar xf fcitx-qt5-rstudio.tar.gz$ cd fcitx-qt5-rstudio$ sudo apt install ./fcitx-frontend-qt5-rstudio_1.0.5-1_amd64.deb ./libfcitx-qt5-1-rstud...原创 2019-07-09 15:17:34 · 414 阅读 · 1 评论 -
转|R中排序函数总结:sort,order,rank,arrange,reorder
转:https://blog.csdn.net/kelanj/article/details/80945540总结(区别):1、sort是直接对向量排序,返回原数值;2、order先对数值排序,然后返回排序后各数值的索引;3、rank返回原数据各项排名;4、arrange是plyr包中的,可对数据框按列排序,仍返回数据框;5、reorder用在绘图中,比如ggplot中绘条...转载 2019-07-08 16:01:45 · 3184 阅读 · 0 评论 -
'.'和'..'还有'./'和'../'
参考1:. 表示当前目录.. 表示当前目录的上一级目录。./表示当前目录下的某个文件或文件夹,视后面跟着的名字而定../表示当前目录上一级目录的文件或文件夹,视后面跟着的名字而定。例如:文件夹 a下面有 文件夹b c 和文件 d。文件夹b下面有e.php 和文件f。则e中的 . 表示 文件夹b./f 表示b下面的文件f。.. 表示a文件夹。../d 表示a文件夹下...转载 2019-05-31 22:16:29 · 5035 阅读 · 0 评论 -
R 语言中添加辅助线(ggplot2)
来源绘制横跨整个坐标系的直线:因为y轴是连续的,所以在这里我们使用 geomhline, 当然在x轴是连续的情况下也可以使用 geomvline (加入 xintercept参数) 。为不同分类变量绘制独立的辅助线为了给每个条形图绘制不同的辅助线,我们需要用到geom_errorbar命令。我们的辅助线实际上是一个没有高度的误差带,需要指定一系列y值来使它...转载 2019-05-31 15:07:07 · 21528 阅读 · 2 评论 -
Quick R|Operators
https://www.statmethods.net/management/operators.htmlOperatorsR's binary and logical operators will look very familiar to programmers. Note that binary operators work on vectors and matrices as we...转载 2019-05-15 21:03:32 · 181 阅读 · 1 评论 -
R在安装units时出现错误,提示未安装“udunits”,安装udunits后提示ERROR: configuration failed for package ‘udunits2’
2018.9.10configure: error: in `/tmp/Rtmp79GfU8/R.INSTALL56a968302bf8/units':configure: error:--------------------------------------------------------------------------------libudunits2.so n...原创 2018-09-12 21:41:05 · 6784 阅读 · 0 评论