readMyFile: readMyFile

View source: R/readMyFile.R

readMyFileR Documentation

readMyFile

Description

Read input files including .csv, .xlsx and .txt files in tabular format and return as data.frame.

Usage

readMyFile(this_file)

Arguments

this_file

File path

Value

data.frame, content of the file.

Author(s)

Jayachandra N

Examples

temp_file <- tempfile(fileext = ".csv")
write.csv(mtcars, temp_file)
readMyFile(temp_file)

netknitr documentation built on April 3, 2025, 5:47 p.m.