source("https://bioconductor.org/biocLite.R") #載入安裝工具
biocLite("DESeq2")? #安裝包
library("DESeq2") #測(cè)試是否安裝成功
R里面的取整函數(shù):
> x<-3.555555
> ceiling(x)
[1] 4
> floor(x)
[1] 3
> trunc(x)
[1] 3
>
> round(x, digits = 0)
[1] 4
> signif(x, digits = 6)
[1] 3.55556