Visualising Clinicopathological Data
ClinicoPathDescriptives Team
Source:vignettes/visualization.Rmd
visualization.Rmd
This article covers the visualisation functions available in the package.
Age Pyramid
agepyramid(
data = histopathology,
age = "Age",
gender = "Sex",
female = "Female"
)
Benford Analysis
benford(data = histopathology, var = "TumorSize")
Waterfall and Spider Plots
waterfall(
data = treatmentResponse,
patientID = "PatientID",
responseVar = "Response",
timeVar = "Month",
inputType = "percentage",
showWaterfallPlot = TRUE,
showSpiderPlot = TRUE
)
These code snippets illustrate the core visualisation tools included
in ClinicoPathDescriptives
.