R包安裝大法安裝特定版本的R包

如果R包的更新與當(dāng)前的R版本或R代碼不兼容,就會(huì)導(dǎo)致之前適用的腳本出現(xiàn)一些問(wèn)題,此時(shí)可能需要安裝某個(gè)特定版本的R包(使腳本正常運(yùn)行)

例如我當(dāng)前的survminer包版本是0.4.3,想換成0.4.2版本术羔。而常規(guī)的 install.packages 函數(shù)并不支持版本的選擇...

1.最簡(jiǎn)便的方法是使用devtools包中的install_version函數(shù):

require(devtools)install_version('survminer', version = '0.4.2')
Downloading package from url: https://mirrors.tuna.tsinghua.edu.cn/CRAN/src/contrib/Archive/survminer/survminer_0.4.2.tar.gz

Installing survminer

packageVersion('survminer') # 當(dāng)前版本查看
[1] ‘0.4.2’

這種方法會(huì)下載并安裝目標(biāo)R包及其依賴的包吓妆,所以推薦使用砾隅!

2.雖然 install.packages 函數(shù)并不支持版本的選擇俱济,但是如果你知道R包的源文件的位置:https://cran.r-project.org/src/contrib/Archive 或者其他鏡像嘶是,則可以直接通過(guò) source 的方式安裝:

packageurl = 'https://cran.r-project.org/src/contrib/Archive/survminer/survminer_0.4.2.tar.gz'
install.packages(packageurl, repos = NULL, type = 'source')
舉例

packageurl = 'http://www.bioconductor.org/packages/release/bioc/src/contrib/BiocGenerics_0.32.0.tar.gz'
> install.packages(packageurl, repos = NULL, type = 'source')
Installing package into ‘C:/Users/wlx/Documents/R/win-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'http://www.bioconductor.org/packages/release/bioc/src/contrib/BiocGenerics_0.32.0.tar.gz'
Content type 'application/x-gzip' length 46806 bytes (45 KB)
downloaded 45 KB

* installing *source* package 'BiocGenerics' ...
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
Creating a new generic function for 'append' in package 'BiocGenerics'
Creating a new generic function for 'as.data.frame' in package 'BiocGenerics'
Creating a new generic function for 'cbind' in package 'BiocGenerics'
Creating a new generic function for 'rbind' in package 'BiocGenerics'
Creating a new generic function for 'do.call' in package 'BiocGenerics'
Creating a new generic function for 'duplicated' in package 'BiocGenerics'
Creating a new generic function for 'anyDuplicated' in package 'BiocGenerics'
Creating a new generic function for 'eval' in package 'BiocGenerics'
Creating a new generic function for 'pmax' in package 'BiocGenerics'
Creating a new generic function for 'pmin' in package 'BiocGenerics'
Creating a new generic function for 'pmax.int' in package 'BiocGenerics'
Creating a new generic function for 'pmin.int' in package 'BiocGenerics'
Creating a new generic function for 'Reduce' in package 'BiocGenerics'
Creating a new generic function for 'Filter' in package 'BiocGenerics'
Creating a new generic function for 'Find' in package 'BiocGenerics'
Creating a new generic function for 'Map' in package 'BiocGenerics'
Creating a new generic function for 'Position' in package 'BiocGenerics'
Creating a new generic function for 'get' in package 'BiocGenerics'
Creating a new generic function for 'mget' in package 'BiocGenerics'
Creating a new generic function for 'grep' in package 'BiocGenerics'
Creating a new generic function for 'grepl' in package 'BiocGenerics'
Creating a new generic function for 'is.unsorted' in package 'BiocGenerics'
Creating a new generic function for 'lapply' in package 'BiocGenerics'
Creating a new generic function for 'sapply' in package 'BiocGenerics'
Creating a new generic function for 'mapply' in package 'BiocGenerics'
Creating a new generic function for 'match' in package 'BiocGenerics'
Creating a new generic function for 'order' in package 'BiocGenerics'
Creating a new generic function for 'paste' in package 'BiocGenerics'
Creating a new generic function for 'rank' in package 'BiocGenerics'
Creating a new generic function for 'rownames' in package 'BiocGenerics'
Creating a new generic function for 'colnames' in package 'BiocGenerics'
Creating a new generic function for 'union' in package 'BiocGenerics'
Creating a new generic function for 'intersect' in package 'BiocGenerics'
Creating a new generic function for 'setdiff' in package 'BiocGenerics'
Creating a new generic function for 'sort' in package 'BiocGenerics'
Creating a new generic function for 'table' in package 'BiocGenerics'
Creating a new generic function for 'tapply' in package 'BiocGenerics'
Creating a new generic function for 'unique' in package 'BiocGenerics'
Creating a new generic function for 'unsplit' in package 'BiocGenerics'
Creating a new generic function for 'var' in package 'BiocGenerics'
Creating a new generic function for 'sd' in package 'BiocGenerics'
Creating a new generic function for 'which' in package 'BiocGenerics'
Creating a new generic function for 'which.max' in package 'BiocGenerics'
Creating a new generic function for 'which.min' in package 'BiocGenerics'
Creating a new generic function for 'IQR' in package 'BiocGenerics'
Creating a new generic function for 'mad' in package 'BiocGenerics'
Creating a new generic function for 'xtabs' in package 'BiocGenerics'
Creating a new generic function for 'clusterCall' in package 'BiocGenerics'
Creating a new generic function for 'clusterApply' in package 'BiocGenerics'
Creating a new generic function for 'clusterApplyLB' in package 'BiocGenerics'
Creating a new generic function for 'clusterEvalQ' in package 'BiocGenerics'
Creating a new generic function for 'clusterExport' in package 'BiocGenerics'
Creating a new generic function for 'clusterMap' in package 'BiocGenerics'
Creating a new generic function for 'parLapply' in package 'BiocGenerics'
Creating a new generic function for 'parSapply' in package 'BiocGenerics'
Creating a new generic function for 'parApply' in package 'BiocGenerics'
Creating a new generic function for 'parRapply' in package 'BiocGenerics'
Creating a new generic function for 'parCapply' in package 'BiocGenerics'
Creating a new generic function for 'parLapplyLB' in package 'BiocGenerics'
Creating a new generic function for 'parSapplyLB' in package 'BiocGenerics'
Creating a new generic function for 'basename' in package 'BiocGenerics'
Creating a new generic function for 'dirname' in package 'BiocGenerics'
** help
*** installing help indices
  converting help for package 'BiocGenerics'
    finding HTML links ... 好了
    BiocGenerics-package                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:31: file link 'rbind' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:34: file link 'rowSums' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:35: file link 'colMeans' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:36: file link 'rowMeans' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:41: file link 'anyDuplicated' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:46: file link 'pmax' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:47: file link 'pmin' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:48: file link 'pmax.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:49: file link 'pmin.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:52: file link 'Reduce' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:53: file link 'Filter' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:54: file link 'Find' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:55: file link 'Map' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:56: file link 'Position' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:59: file link 'mget' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:62: file link 'grepl' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:67: file link 'sapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:72: file link '%in%' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:75: file link 'ncol' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:76: file link 'NROW' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:77: file link 'NCOL' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:85: file link 'rep.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:87: file link 'rownames' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:88: file link 'rownames<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:89: file link 'colnames' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:90: file link 'colnames<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:93: file link 'union' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:94: file link 'intersect' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:95: file link 'setdiff' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:100: file link 'start<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:101: file link 'end' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:102: file link 'end<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:103: file link 'width' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:104: file link 'width<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:105: file link 'pos' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:143: file link 'clusterCall' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:145: file link 'clusterApplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:146: file link 'clusterEvalQ' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:147: file link 'clusterExport' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:148: file link 'clusterMap' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:149: file link 'clusterSplit' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:150: file link 'parLapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:151: file link 'parSapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:152: file link 'parApply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:153: file link 'parRapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:154: file link 'parCapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:155: file link 'parLapplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:156: file link 'parSapplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:163: file link 'annotation<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:168: file link 'dbfile' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:178: file link 'organism' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:179: file link 'organism<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:180: file link 'species' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:181: file link 'species<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:184: file link 'path<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:185: file link 'basename' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:186: file link 'basename<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:187: file link 'dirname' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:188: file link 'dirname<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:195: file link 'score<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:198: file link 'strand<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:199: file link 'invertStrand' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:204: file link 'type<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:243: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    Extremes                                html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:18: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:38: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:44: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:53: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:59: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:62: file link 'pmax,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:64: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    IQR                                     html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/IQR.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    Ontology                                html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:26: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:29: file link 'Ontology,GOTerms-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:31: file link 'GOTerms' in package 'AnnotationDbi' does not exist and so has been treated as a topic
    S3-classes-as-S4-classes                html  
    annotation                              html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:34: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:37: file link 'annotation,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:39: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
    append                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:57: file link 'append,Vector,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:59: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
    as.data.frame                           html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:56: file link 'as.data.frame,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:58: missing file link 'as.data.frame,IntegerRanges-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:60: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:61: file link 'IntegerRanges' in package 'IRanges' does not exist and so has been treated as a topic
    as.vector                               html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:15: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:30: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:38: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:47: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:56: file link 'as.vector,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:57: file link 'as.vector,AtomicList-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:59: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:60: file link 'AtomicList' in package 'IRanges' does not exist and so has been treated as a topic
    boxplot                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/boxplot.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    cbind                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:56: file link 'cbind,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:58: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
    clusterApply                            html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/clusterApply.Rd:98: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    colSums                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:56: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:59: file link 'colSums,DelayedMatrix-method' in package 'DelayedArray' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:62: file link 'DelayedMatrix' in package 'DelayedArray' does not exist and so has been treated as a topic
    combine                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:69: file link 'AnnotatedDataFrame' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:70: file link 'MIAME' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:71: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:84: file link 'combine,AnnotatedDataFrame,AnnotatedDataFrame-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:85: file link 'combine,AssayData,AssayData-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:86: file link 'combine,MIAME,MIAME-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:87: file link 'combine,eSet,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:96: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    dbconn                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:36: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:39: file link 'dbconn,AnnotationDb-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:41: file link 'dbconn' in package 'AnnotationDbi' does not exist and so has been treated as a topic
    density                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/density.Rd:45: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    dge                                     html  
    dims                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:27: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:30: file link 'dims,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:32: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
    do.call                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/do.call.Rd:61: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    duplicated                              html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:69: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:72: file link 'duplicated,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:74: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    eval                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:58: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:61: file link 'eval,expression,Vector-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:64: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
    evalq                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:12: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:34: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:40: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:45: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
    fileName                                html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/fileName.Rd:29: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    funprog                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:26: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:43: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:55: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:64: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:70: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:73: file link 'Reduce,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:75: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
    get                                     html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/get.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/get.Rd:67: file link 'get,ANY,Bimap,missing-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
    grep                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/grep.Rd:56: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    image                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/image.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    is.unsorted                             html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:63: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:66: file link 'is.unsorted,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:69: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
    lapply                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:61: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:64: file link 'lapply,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:66: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
    mad                                     html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mad.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    mapply                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mapply.Rd:9: file link 'sapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mapply.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    match                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:66: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:69: file link 'match,Hits,Hits-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:70: file link '%in%,Rle,ANY-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:72: file link 'Hits' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:73: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    mean                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:49: file link 'mean,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:51: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    normalize                               html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/normalize.Rd:38: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    nrow                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:50: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:53: file link 'nrow,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:55: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
    order                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:73: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:76: missing file link 'order,IntegerRanges-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:78: file link 'IntegerRanges' in package 'IRanges' does not exist and so has been treated as a topic
    organism_species                        html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:63: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:66: file link 'organism,character-method' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:67: file link 'organism,chromLocation-method' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:69: file link 'chromLocation' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:72: file link 'species,AnnotationDb-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:74: file link 'AnnotationDb' in package 'AnnotationDbi' does not exist and so has been treated as a topic
    paste                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:49: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:52: file link 'paste,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:54: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    path                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/path.Rd:91: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    plotMA                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/plotMA.Rd:35: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    plotPCA                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/plotPCA.Rd:36: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    rank                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:70: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:73: file link 'rank,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:75: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
    relist                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:49: file link 'relist,ANY,List-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:51: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
    rep                                     html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:12: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:27: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:33: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:42: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:48: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:51: file link 'rep.int,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:53: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    residuals                               html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/residuals.Rd:41: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    row_colnames                            html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:17: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:36: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:50: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:59: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:66: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:69: file link 'rownames,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:71: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
    score                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:34: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:37: file link 'score,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:39: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
    sets                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:17: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:39: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:57: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:65: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:71: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:74: file link 'union,GenomicRanges,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:77: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
    sort                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:62: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:65: file link 'sort,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:67: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
    start                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:67: file link 'start,IRanges-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:69: file link 'IRanges' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:71: missing file link 'pos,UnstitchedIPos-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:73: missing file link 'UnstitchedIPos'
    strand                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:73: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:76: file link 'strand,GRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:78: file link 'GRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
    subset                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:49: file link 'subset,DataTable-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:51: file link 'DataTable' in package 'S4Vectors' does not exist and so has been treated as a topic
    t                                       html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:47: file link 't,Hits-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:49: file link 'Hits' in package 'S4Vectors' does not exist and so has been treated as a topic
    table                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:49: file link 'table,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:51: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    tapply                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:67: file link 'tapply,Vector,ANY-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:69: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
    testPackage                             html  
    toTable                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/toTable.Rd:37: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/toTable.Rd:40: file link 'toTable,Bimap-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
    type                                    html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/type.Rd:45: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/type.Rd:48: file link 'type,ANY-method' in package 'DelayedArray' does not exist and so has been treated as a topic
    unique                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:57: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:60: file link 'unique,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:62: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
    unlist                                  html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:51: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:54: file link 'unlist,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:56: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
    unsplit                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:14: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:33: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:39: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:48: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:57: file link 'unsplit,List-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:59: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
    updateObject                            html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/updateObject.Rd:130: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    var                                     html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:14: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:32: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:36: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:45: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:51: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    weights                                 html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/weights.Rd:47: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
    which                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:57: file link 'NumericList' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:69: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:72: file link 'which.max,NumericList-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:75: file link 'NumericList' in package 'IRanges' does not exist and so has been treated as a topic
    xtabs                                   html  
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:52: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:55: file link 'xtabs,DataTable-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:57: file link 'DataTable' in package 'S4Vectors' does not exist and so has been treated as a topic
** building package indices
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (BiocGenerics)

3.將安裝包下載到本地后安裝,終端命令如下:

wget https://cran.r-project.org/src/contrib/Archive/survminer/survminer_0.4.2.tar.gzR CMD INSTALL survminer_0.4.2.tar.gz
當(dāng)然蛛碌,想要安裝特定版本的R包也可能會(huì)面臨一些問(wèn)題聂喇。比如,舊版本包中有bug蔚携、缺少新的功能希太、與當(dāng)前R版本并不兼容等。此時(shí)酝蜒,就需要下載安裝適配版本的R或者調(diào)整腳本了誊辉!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市秕硝,隨后出現(xiàn)的幾起案子芥映,更是在濱河造成了極大的恐慌,老刑警劉巖远豺,帶你破解...
    沈念sama閱讀 218,682評(píng)論 6 507
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件奈偏,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡躯护,警方通過(guò)查閱死者的電腦和手機(jī)惊来,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,277評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)棺滞,“玉大人裁蚁,你說(shuō)我怎么就攤上這事〖套迹” “怎么了枉证?”我有些...
    開(kāi)封第一講書人閱讀 165,083評(píng)論 0 355
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)移必。 經(jīng)常有香客問(wèn)我室谚,道長(zhǎng),這世上最難降的妖魔是什么崔泵? 我笑而不...
    開(kāi)封第一講書人閱讀 58,763評(píng)論 1 295
  • 正文 為了忘掉前任秒赤,我火速辦了婚禮,結(jié)果婚禮上憎瘸,老公的妹妹穿的比我還像新娘入篮。我一直安慰自己,他們只是感情好幌甘,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,785評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布潮售。 她就那樣靜靜地躺著痊项,像睡著了一般。 火紅的嫁衣襯著肌膚如雪饲做。 梳的紋絲不亂的頭發(fā)上线婚,一...
    開(kāi)封第一講書人閱讀 51,624評(píng)論 1 305
  • 那天遏弱,我揣著相機(jī)與錄音盆均,去河邊找鬼。 笑死漱逸,一個(gè)胖子當(dāng)著我的面吹牛泪姨,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播饰抒,決...
    沈念sama閱讀 40,358評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼肮砾,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了袋坑?” 一聲冷哼從身側(cè)響起仗处,我...
    開(kāi)封第一講書人閱讀 39,261評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎枣宫,沒(méi)想到半個(gè)月后婆誓,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,722評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡也颤,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,900評(píng)論 3 336
  • 正文 我和宋清朗相戀三年洋幻,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片翅娶。...
    茶點(diǎn)故事閱讀 40,030評(píng)論 1 350
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡文留,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出竭沫,到底是詐尸還是另有隱情燥翅,我是刑警寧澤,帶...
    沈念sama閱讀 35,737評(píng)論 5 346
  • 正文 年R本政府宣布蜕提,位于F島的核電站森书,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏贯溅。R本人自食惡果不足惜拄氯,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,360評(píng)論 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望它浅。 院中可真熱鬧译柏,春花似錦、人聲如沸姐霍。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 31,941評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至胯府,卻和暖如春介衔,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背骂因。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 33,057評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工炎咖, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人寒波。 一個(gè)月前我還...
    沈念sama閱讀 48,237評(píng)論 3 371
  • 正文 我出身青樓乘盼,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親俄烁。 傳聞我的和親對(duì)象是個(gè)殘疾皇子绸栅,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,976評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容

  • Distutils可以用來(lái)在Python環(huán)境中構(gòu)建和安裝額外的模塊。新的模塊可以是純Python的页屠,也可以...
    MiracleJQ閱讀 3,074評(píng)論 0 1
  • 第一種方式 使用R自帶的函數(shù)安裝粹胯,無(wú)需考慮各種包之間的依賴關(guān)系。 直接輸入包名字即可辰企,注意雙引號(hào)不可省略 > in...
    wonphen閱讀 990評(píng)論 0 4
  • 最近天氣漸漸熱起來(lái)了风纠,帶寶寶去買菜。偶遇很喜歡吃的涼皮蟆豫。想著和黃瓜一起涼拌一定很好吃议忽。于是乎買了一些。中午十减,我當(dāng)當(dāng)...
    露珠_(kāi)0076閱讀 194評(píng)論 0 0
  • 真正的愛(ài)帮辟,是純粹的 《白蛇傳》的故事我們從小看到大速址,所以對(duì)于改編自《白蛇傳》的動(dòng)畫電影《白蛇:緣起》我是有一點(diǎn)點(diǎn)擔(dān)...
    巴士視頻閱讀 764評(píng)論 0 1
  • 姓名:洪霞 部門:技術(shù)部 組別:待定 【知~學(xué)習(xí)】 誦讀《活法》與外國(guó)交涉,“正當(dāng)性”重于常識(shí) 【內(nèi)容感悟分享】 ...
    洪霞薔薇閱讀 121評(píng)論 0 0