plotWriteFilenameToLaTexFile {WebAnalytics}R Documentation

Write an includegraphic element to the generated LaTeX file

Description

Writes an includegraphic element to the brew-generated LaTeX file. Written to be used in a series of nested calls as shown in the example.

Usage

plotWriteFilenameToLaTexFile(graphicFileName) 

Arguments

graphicFileName

The name of the file to be included in the LaTeX

Value

Does not return a value

Author(s)

Greg Hunt <greg@firmansyah.com>

Examples


logFileName = logFileNamesGetLast(dataDirectory=datd, 
  directoryNames=c(".", "."), 
  fileNamePattern="*[.]log")[[1]]

cols = logFileFieldsGetIIS(logFileName)

logdf = logFileRead(logFileName, columnList=cols, 
            logTimeZone = "", timeFormat = "")

plotWriteFilenameToLaTexFile(plotSaveGG(plotErrorRateByHour(logdf),"xxx", "eps"))


[Package WebAnalytics version 0.9.12 Index]