You can add a new row of zeros to a matrix in R without adding a corresponding column by using the rbind()
function in combination with cbind()
for data manipulation. Here's how you can do it:
223 chars9 lines
In this code snippet, mat
is the original matrix, and new_row
is a vector of zeros with the same number of columns as the original matrix. By using rbind()
, we can concatenate the original matrix with the new row to create new_mat
, which now includes the row of zeros.
Now, new_mat
is a matrix with an additional row of zeros at the end of the matrix.
gistlibby LogSnag