Learn R Programming

LaF (version 0.5)

determine_nlines: Determine number of lines in a text file

Description

Determine number of lines in a text file

Usage

determine_nlines(filename)

Arguments

filename
character containing the filename of the file of which the lines are to be counted.

Value

  • Returns the number of lines in the file.

Details

The routine counts the number of line endings. If the last line does not end in a line ending, but does contain character, this line is also counted.

The file size is not limited by the amount of memory in the computer.

See Also

See readLines to read in all lines a text file; get_lines and sample_lines can be used to read in spcified, or random lines.

Examples

Run this code
# Generate file
  writeLines(letters[1:20], con="tmp.csv")

  # Count the lines
  determine_nlines("tmp.csv")

Run the code above in your browser using DataLab