?以下是 R 的交互环境的输出。
我尝试更改 , 和 的 colnames P300.H1
,P300.GM
但Suz12.H1
没有奏效。
> lapply(list(P300.H1,P300.GM,Suz12.H1), function(x) {colnames(x) <- c("chrom","start", "end", "name", "score")})
[[1]]
[1] "chrom" "start" "end" "name" "score"
[[2]]
[1] "chrom" "start" "end" "name" "score"
[[3]]
[1] "chrom" "start" "end" "name" "score"
> colnames(P300.H1)
[1] "V1" "V2" "V3" "V4" "V5"
我认为问题可能与作业有关,但我仍然对此感到困惑。
任何人都可以向我解释其中的原因吗?