laTexFilePercentileComparisonsWrite function

Write percentile count comparison table

Write percentile count comparison table

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

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

Returns

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)