logFileListRead {WebAnalytics} | R Documentation |
Given a list of file names, read them as log files
Description
This function calls logFileRead to read the individual log files.
Usage
logFileListRead(fileNameList, readFunction=logFileRead, columnList=NULL)
Arguments
fileNameList |
A list of character file names |
readFunction |
This function is called to read the file name. |
columnList |
The columnList is a list of predefined column names. See |
Value
The function returns a dataframe that is the concatenation (rbind) of the read log files. If the default read function is used the data frame will contain the standard column set required by the other functions in this package.
Author(s)
Greg Hunt <greg@firmansyah.com>
Examples
fileNameList = logFileNamesGetAll(dataDirectory=datd)
logdf = logFileListRead(fileNameList,
readFunction=logFileRead,
columnList=logFileFieldsGetIIS(fileNameList[[1]]))
[Package WebAnalytics version 0.9.12 Index]