摘要:
001、 命令 plink --file new --allow-extra-chr --check-sex --out sex_check 002、结果 0表示未知; 1表示雄性; 2表示雌性。 阅读全文
posted @ 2025-03-28 17:28
小鲨鱼2018
阅读(55)
评论(0)
推荐(0)
摘要:
001、 library(ggplot2) data <- data.frame( x = rnorm(100), y = rnorm(100) ) data$group <- sample(c("A", "B", "C"), 100, replace = TRUE) head(data) ggpl 阅读全文
posted @ 2025-03-28 12:06
小鲨鱼2018
阅读(25)
评论(0)
推荐(0)
摘要:
001、 library(ggplot2) data <- data.frame( x = rnorm(100), y = rnorm(100) ) ggplot(data, aes(x = x, y = y, color = y)) + geom_point(size = 3) + scale_c 阅读全文
posted @ 2025-03-28 12:01
小鲨鱼2018
阅读(70)
评论(0)
推荐(0)
摘要:
001、R语言中ggplot绘图去除灰色背景并保留外围框线 library(ggplot2) data <- data.frame( x = rnorm(10), y = rnorm(10) ) ggplot(data, aes(x = x, y = y)) + geom_point() + the 阅读全文
posted @ 2025-03-28 11:47
小鲨鱼2018
阅读(133)
评论(0)
推荐(0)