This vignette focuses on the visualization functionalities available within the inTextSummaryTable
package.
If you need to see figures bigger, just click on a graphic, and it will pop up more readable.
Summary statistics can be visualized by:
computeSummaryStatisticsTable
function (used for getSummaryStatistics
function)subjectProfileSummaryPlot
functionBy default the subjectProfileSummaryPlot
plots the mean values with error bars based on standard errors.
Moreover, the subjectProfileSummaryPlot
allows the possibility to add a table of counts of the number of subject for a specific combination of variables.
This vignette will guide the user to
However, in order to get a full overview of the functionalities the documentation is available in the console with ? subjectProfileSummaryPlot
.
We will first create example data sets to show how the exporting functionalities work. The data sets used here are available in the clinUtils
package.
library(inTextSummaryTable)
library(clinUtils)
library(pander)
# 'Tahoma' font should be registered upfront to create plots with: 'presentation' style
library(extrafont)
# load example data
data(dataADaMCDISCP01)
dataAll <- dataADaMCDISCP01
labelVars <- attr(dataAll, "labelVars")
Below we compute summary statistics for the laboratory data set.
dataLB <- subset(dataAll$ADLBC, grepl("Baseline|Week", AVISIT))
dataLB$AVISIT <- with(dataLB, reorder(trimws(AVISIT), AVISITN))
dataLB$TRTA <- with(dataLB, reorder(TRTA, TRTAN))
summaryTableDf <- computeSummaryStatisticsTable(
data = dataLB,
var = "AVAL",
rowVar = c("PARCAT1", "PARAM"),
colVar = c("TRTA", "AVISIT")
)
The code below shows the default visualization, which plots the mean with standard errors suitable for an A4 document, e.g. Word/pdf.
Note that the table below the plot is based on the counts for treatment and visit variables, as specificed in the colVar
argument of the code chuck above for computeSummaryStatisticsTable
.
# create the plot
dataPlot <- subset(
summaryTableDf,
!isTotal &
PARAM == "Alanine Aminotransferase (U/L)"
)
subjectProfileSummaryPlot(
data = dataPlot,
xVar = "AVISIT",
colorVar = "TRTA",
labelVars = labelVars,
useLinetype = TRUE,
tableText = "statN"
)
The code below shows the default visualization suitable for a presentation, either in Powerpoint or ioslides.
subjectProfileSummaryPlot(
data = dataPlot,
xVar = "AVISIT",
colorVar = "TRTA",
labelVars = labelVars,
useLinetype = TRUE,
tableText = "statN",
style = "presentation"
)
Please note that the default font for presentation is Tahoma.
If you don’t have this default font available, the R package extrafont might be useful to register fonts with your R graphics device.
The inTextSummaryTable
uses default palettes available in the clinUtils
package.
However, palettes are fully customizable. Currently, there are two alternative approaches to change the defaults:
subjectProfileSummaryPlot
via the dedicated parameters colorPalette
, shapePalette
, linetypePalette
Passing input arguments to the function might be convenient when creating one plot.
Instead, passing the global options is very handy when creating multiple graphics, so that the palettes have to be set only once at the beginning of the R script, without the need to copy-paste input arguments in the different visualizations.
If you want to know more about aesthetics options of the inTextSummaryTable
, there is a dedicated vignette available here) or with
vignette("inTextSummaryTable-aesthetics", "inTextSummaryTable")
If you want to know more about default options from the clinUtils
, you may check out the vignette of the package:
vignette("clinUtils-vignette", "clinUtils")
Sections below show below both alternative approaches for setting the palettes.
In this section we guide on how to set custom palettes via the subjectProfileSummaryPlot
function.
This section focuses on the possibility to set the colorPalette
argument.
# custom color palette by setting a named vector of colors
customColorPalette <- c(
`Xanomeline Low Dose` = "green",
`Xanomeline High Dose` = "red",
`Placebo` = "blue"
)
subjectProfileSummaryPlot(
data = dataPlot,
xVar = "AVISIT",
colorVar = "TRTA",
colorPalette = customColorPalette,
labelVars = labelVars,
useLinetype = TRUE,
tableText = "statN"
)