rtht: Read table from file

Description Usage Arguments Details

View source: R/files.R

Description

A wrapper for read.table. By default, it assumes the file has a header row, is tab separated. By default it does not convert strings into factors.

Usage

1
2
3
4
5
6
7
8
9
rtht(
  f,
  rowid.column = NULL,
  header = TRUE,
  sep = "\t",
  comment.char = "#",
  stringsAsFactors = FALSE,
  ...
)

Arguments

f

filename

rowid.column

character name of column to use as rownames

header

logical, determines if to read the header

sep

character, column separator

comment.char

character denoting line-to-ignore (comment)

stringsAsFactors

logical, determines whether strings are converted into factors

...

other parameters passed on to read.table

Details

The name is short for: (r)ead (t)able with (h)eader and (t)ab separated


tkonopka/shrt documentation built on March 5, 2020, 2:51 p.m.