我是新来的 R,我想填写一个空矩阵与结果,我的 for
循环使用 cbind
。我的问题是,如何消除矩阵第一列中的 NA。我将我的代码包括如下:
output<-matrix(,15,) ##generate an empty matrix with 15 rows, the first column already filled with NAs, is there any way to leave the first column empty?
for(`enter code here`){
normF<-`enter code here`
output<-cbind(output,normF)
}
输出是我期望的矩阵。唯一的问题是它的第一栏填满了 NA。我怎样才能删除那些 NAs?