YaleToolkit (version 4.2.2)

getnrows: Get the number of rows of the file

Description

Use iterators to avoid the memory overhead of obtaining the number of rows of a file.

Usage

getnrows(file, n = 10000)

Arguments

file

the name of a file (possible with a path)

n

the size of the chunks used by the iterator

Value

an integer

Examples

Run this code
# NOT RUN {
data(CO2)
write.csv(CO2, "CO2.csv", row.names=FALSE)
getnrows("CO2.csv")
# }

Run the code above in your browser using DataLab