ReadDataFile {hivPlatform} | R Documentation |
Read content of a data file, either Excel or text.
It is a wrapper around ReadExcelFile
and ReadTextFile
. Appropriate
loading function is resolved by the extension of fileName
.
ReadDataFile(fileName, fileType, ...)
fileName |
Name of file to read. Required. |
fileType |
Type of data to read. Required if |
... |
Additional parameters passed to |
data.table object.
## Not run: ReadDataFile(fileName) ReadDataFile(fileName, "xlsx") ReadDataFile(fileName, "csv") ## End(Not run)