There is a dataframe
named cnbd
, for example:
cnbd = data.frame(1,2,3,NA,NA,5)
Thus the expression:
dim(cnbd)[1]
give 1.
I want to write a dataframe like cnbd
to a csv with:
write(file = filename, cnbd, append = TRUE)
The problem comes:
- The values of csv file show
cnbd
with 6 rows not 1 row as 1,2,3,NA,NA,5
.
- I need output
cnbd
show as 1,2,3,,,5
in csv file, no NAs.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…