我正在尝试阅读"一个"使用read.xlsx()
函数的多列.xls文件中的列。它返回一个data.frame
,其中包含29个obs和1个变量(其中观察位于其中),即使我通过空行读取了42行我想要强制执行NAs,NaN或0中的空白。有人可以请帮助我接着就,随即?例如:
require(xlsx)
n = c(2, 3, 5)
s = c("aa", "bb", "cc")
b = c(TRUE, FALSE, TRUE)
df = data.frame(n, s, b)
write.xlsx(df, "df.xls")
req_column = read.xlsx ("df.xls", sheetIndex=1, colIndex= 2, startRow=1, endRow= 10,
as.data.frame=TRUE, header=TRUE,colClasses="character")
给出了3个obs和1个变量的列,但我希望在空白列中使用NA,NAN或0进行10次观察。