simple_read_csv: Simple Read CSV This function is meant to create a CSV/TSV...

Description Usage Arguments Examples

View source: R/simple_read_csv.R

Description

Simple Read CSV This function is meant to create a CSV/TSV reading function that makes more sense than the default read.csv and read.csv2 functions

Usage

1
simple_read_csv(separator, decimal, theFile)

Arguments

separator

This indicates which character is being used to demlimit a CSV. Accepted values are comma, semicolon, and tab.

decimal

This indicates which character is being used to indicate decimal places in a number. Acceptable values are a comma or period/full stop.

theFile

The name of the CSV or TSV.

Examples

1
simple_read_csv(separator = '\t', decimal = ',', theFile = 'bob.csv')

trwiley/simple-csv documentation built on May 28, 2019, 4:32 a.m.