[R] predict
https://stat.ethz.ch/R-manual/R-devel/library/stats/html/predict.glm.html 데이터를 통해 GLM으로 모델링한 model이 있다고 해보자. 함수 predict 는 모델로부터 값을 예측해주는 기능을 한다. predict(model, newdata, type=c("link", "response", "terms"), se.fit=FALSE, dispersion=NULL, term=NULL, na.action=na.pass,..) - Parameter * model : glm fittef model from data. * newdata : 예측하고자 하는 값이 있는 데이터. * type : { link : log-odds, response : expecte..
2021. 10. 19.
[R] boxplot options
https://r-charts.com/distribution/boxplot-function/ pdf(paste0(fname, "_non_vs_normalized.pdf")) par(mar=c(1, 4, 2, 1)) par(mfrow = c(2, 1)) boxplot(log_ndds, notch=TRUE, main = "Non-normalized read counts", ylab="log2(read counts + 1)", names=NA, cex = .2, col = meta$color, border = 8, medcol = 3, outlwd = 0.5, boxlwd = 0.1, whisklwd =0.2) boxplot(log_dds, notch=TRUE, main = "Size-factor-normal..
2021. 10. 6.