Project object
This function creates an object of class Project
which can be added to an object of class PresentationModel
.
Project(username = "[Unknown User]", title = "[Unknown title]", description = "[No description]")
username |
defines the username to be printed in the report. |
title |
defines the title of the project to be printed in the report. |
description |
defines the description of the project to be printed in the report. |
Objects of class Project
are used in objects of class PresentationModel
to add more details on the project, such as the author, a title and a destiption of the project. This information will be added in the report generated using the GenerateReport
function. A single object of class Project
can be added to an object of class PresentationModel
.
See Also PresentationModel
and GenerateReport
.
# Reporting presentation.model = PresentationModel() + Project(username = "[Mediana's User]", title = "Case study 1", description = "Clinical trial in patients with pulmonary arterial hypertension") + Section(by = "outcome.parameter") + Table(by = "sample.size") + CustomLabel(param = "sample.size", label= paste0("N = ",c(50, 55, 60, 65, 70))) + CustomLabel(param = "outcome.parameter", label=c("Standard 1", "Standard 2"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.