readMyFile | R Documentation |
Read input files including .csv, .xlsx and .txt files in tabular format and return as data.frame.
readMyFile(this_file)
this_file |
File path |
data.frame, content of the file.
Jayachandra N
temp_file <- tempfile(fileext = ".csv")
write.csv(mtcars, temp_file)
readMyFile(temp_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.