readMyFile {netknitr} | R 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)
[Package netknitr version 0.2.1 Index]