laTexFilePercentileComparisonsWrite {WebAnalytics}R Documentation

Write percentile count comparison table

Description

Writes a LaTeX table listing URLs in decreasing order of request count for a baseline workload compared with a current workload on stdout for incorporation in a LaTeX report

Usage

laTexFilePercentileComparisonsWrite(latest, 
          baseline, 
          headingLaTeX="\\section{Transaction Count Percentile Ranking}")

Arguments

latest

data frame of log records for the latest (test) workload

baseline

data frame of log records for the baseline workload

headingLaTeX

LaTeX section heading for this table

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 = "")

laTexFilePercentileComparisonsWrite(logdf, 
                logdf)

[Package WebAnalytics version 0.9.12 Index]