我需要查找行数和行数文本文件的列? 我用一个函数来找到它。 例如:我有一个文本文件' test' 20排& 10列。 如何找到行数和行数?文件的列'测试'?
答案 0 :(得分:0)
您需要使示例可重现。
我把问题的意思是“制作你自己的功能”,这将通过以下例子来解决
lengthFunc <- function(filePath){
df<-read.csv(filePath)
df<- data.frame(df)
return(c(nrow(df), ncol(df))
}
testRead <- lengthFunc(filePath)
Numrow<- testRead[1]
Numcols <- testRead[2]
使用MrFlick的评论,您可以执行以下操作
dataFrame <- data.frame(read.csv(pathName))
将给出
行
dim(dataFrame)[1]
列:
dim(dataFrame)[2]