set_citation {DeclareDesign} | R Documentation |
Set the citation of a design
set_citation(
design,
title = NULL,
author = NULL,
year = NULL,
description = "Unpublished research design declaration",
citation = NULL
)
design |
A design typically created using the + operator |
title |
The title of the design, as a character string. |
author |
The author(s) of the design, as a character string. |
year |
The year of the design, as a character string. |
description |
A description of the design in words, as a character string. |
citation |
(optional) The preferred citation for the design, as a character string, in which case title, author, year, and description may be left unspecified. |
a design object with a citation attribute
design <-
declare_model(data = sleep) +
declare_sampling(S = complete_rs(N, n = 10))
design <-
set_citation(design,
author = "Lovelace, Ada",
title = "Notes",
year = 1953,
description = "This is a text description of a design")
cite_design(design)