percentileBaselinePrint | R Documentation |
Calculate quantile values for a supplied numeric list. This is a wrapper around the R quantile function.
percentileBaselinePrint(column,
baselineColumn,
columnNames = c("Delta", "Current", "Baseline", "Percentile"))
column |
a vector of numeric values from the current dataset The values will be rounded to two decimal places before calculation. |
baselineColumn |
a vector of numeric values from the baseline data. The values will be rounded to two decimal places before calculation. |
columnNames |
names of the columns in the table that is printed by this function. |
Returns a ggplot graph of the data.
Greg Hunt <greg@firmansyah.com>
fileNameList = logFileNamesGetAll(dataDirectory=datd)
logdf = logFileListRead(fileNameList,
readFunction=logFileRead,
columnList=logFileFieldsGetIIS(fileNameList[[1]]))
logbasedf = logFileListRead(fileNameList,
readFunction=logFileRead,
columnList=logFileFieldsGetIIS(fileNameList[[1]]))
plotWriteFilenameToLaTexFile(
plotSaveGG(
percentileBaselinePrint(logdf$elapsed,
logbasedf$elapsed,
columnNames = c("Delta", "Current", "Baseline", "Percentile"))
, "xxx")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.