Title: | Build NOAA Stock Assessment Report |
---|---|
Description: | Build a full or update stock assessment report for any stock assessment model. Parameterization allows the user to call a template based on their regional science center, species, area, ect. |
Authors: | Samantha Schiano [aut, cre] |
Maintainer: | Samantha Schiano <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.0 |
Built: | 2025-02-05 22:26:01 UTC |
Source: | https://github.com/nmfs-ost/asar |
Add selected sections to outline
add_base_section(custom_sections)
add_base_section(custom_sections)
custom_sections |
List of existing sections to include in the custom template. Note: this only includes sections within list.files(system.file("templates", "skeleton", package = "asar")). The name of the section, rather than the name of the file, can be used (e.g., 'abstract' rather than '00_abstract.qmd'). If adding a new section, also use parameters 'new_section' and 'section_location'. |
Call and copy the sections in the package templates to create an outline for a stock assessment
add_base_section(c("executive summary", "assessment", "results"))
add_base_section(c("executive summary", "assessment", "results"))
Write R Chunk to Add Child Document
add_child(x, label = NULL)
add_child(x, label = NULL)
x |
An additional section to add into the template. Options for additional sections are in the 'skeleton' folder. Appropriate files are .qmd files and are formatted as such: XX_section.qmd (i.e., not a, b, c... subfiles). |
label |
Description of the child document being added. It should be short- one or two words, maximum. |
Formatting R chunk for child document to add section into the template/skeleton. Utilize the cat() function to implement into readable text.
add_child("test_quarto.qmd", label = "test_doc")
add_child("test_quarto.qmd", label = "test_doc")
Write R chunk to template
add_chunk( x, echo = "false", warnings = "false", eval = "true", label = NULL, add_option = FALSE, chunk_op = NULL, rmark_op = NULL )
add_chunk( x, echo = "false", warnings = "false", eval = "true", label = NULL, add_option = FALSE, chunk_op = NULL, rmark_op = NULL )
x |
Content to be written within the R chunk. Wrap in quotation marks (""). |
echo |
TRUE/FALSE; Option to repeat code in the document. Default is false. |
warnings |
TRUE/FALSE; Option to report warnings in the console during render. Default is false. |
eval |
TRUE/FALSE; Option to evaluate the chunk. Default is true. |
label |
The name of the chunk in the 'label:' section of the R code chunk. This should be in snakecase (i.e., in which words are written in lowercase and connected by underscores). |
add_option |
TRUE/FALSE; Option to add additional chunk options. Default is false. |
chunk_op |
List of chunk options to add. For example: c("output: true", "error: false) |
rmark_op |
List of chunk options to add after indicating the language of the chunk as used in Rmarkdown. |
Write an additional R chunk into the template using this function. The code can be written as usual, just remember to put it entirely in quotes for the function to render it properly
add_chunk("plot(cars$speed, cars$distance)")
add_chunk("plot(cars$speed, cars$distance)")
Add New Section or Subsection to Template
add_section( new_section = NULL, section_location = NULL, custom_sections = NULL, subdir = NULL )
add_section( new_section = NULL, section_location = NULL, custom_sections = NULL, subdir = NULL )
new_section |
Names of section(s) (e.g., introduction, results) or subsection(s) (e.g., a section within the introduction) that will be added to the document. Please make a short list if >1 section/subsection will be added. The template will be created as a quarto document, added into the skeleton, and saved for reference. |
section_location |
Where new section(s)/subsection(s) will be added to the skeleton template. Please use the notation of 'placement-section'. For example, 'in-introduction' signifies that the new content would be created as a child document and added into the 02_introduction.qmd. To add >1 (sub)section, make the location a list corresponding to the order of (sub)section names listed in the 'new_section' parameter. |
custom_sections |
List of existing sections to include in the custom template. Note: this only includes sections within list.files(system.file("templates", "skeleton", package = "asar")). The name of the section, rather than the name of the file, can be used (e.g., 'abstract' rather than '00_abstract.qmd'). If adding a new section, also use parameters 'new_section' and 'section_location'. |
subdir |
Directory where the new sections will be saved. In the create_template function, this defaults to the location where the template is saved. |
Add an additional section or subsection to the report template if it is not already present in the default template. This provides the option to add it as a section before or after an existing section, or within a section as a child document.
add_section( new_section = "Ecosystem Considerations", section_location = "after-discussion", custom_sections = c("introduction.qmd", "model.qmd", "results.qmd", "discussion.qmd"), subdir = tempdir() )
add_section( new_section = "Ecosystem Considerations", section_location = "after-discussion", custom_sections = c("introduction.qmd", "model.qmd", "results.qmd", "discussion.qmd"), subdir = tempdir() )
Add NOAA formatting to figure or table
add_theme(x)
add_theme(x)
x |
table or figures object from ggplot, base r plot, gt table, flextable, or kable extra |
Add the standard formatting for stock assessment reports for any figure or table. Currently, the function is able to format objects from: ggplot (ggplot2), base r plot, flextable (flextable), gt tables (gt), and kable tables (kableExtra).
add_theme(ggplot2::ggplot(data = cars, ggplot2::aes(x = speed, y = dist)) + ggplot2::geom_point())
add_theme(ggplot2::ggplot(data = cars, ggplot2::aes(x = speed, y = dist)) + ggplot2::geom_point())
Format stock assessment output files to a standardized format.
convert_output( output_file = NULL, outdir = getwd(), model = NULL, fleet_names = NULL, file_save = FALSE, savedir = getwd(), save_name = "std_model_output" )
convert_output( output_file = NULL, outdir = getwd(), model = NULL, fleet_names = NULL, file_save = FALSE, savedir = getwd(), save_name = "std_model_output" )
output_file |
Assessment model output file (e.g., the Report.sso file for SS3, the rdat file for BAM, etc.) |
outdir |
Directory of the assessment model output file. Defaults to working directory. |
model |
Assessment model used in evaluation ("ss3", "bam", "asap", "fims", "amak", "ms-java", "wham", "mas"). |
fleet_names |
Names of fleets in the assessment model as shortened in the output file. If fleet names are not properly read, then indicate the fleets names as an acronym in a vector |
file_save |
TRUE/FALSE; Save the formatted object rather than calling the function and adding the formatted object to the global environment? Default is false. |
savedir |
Directory to save the converted output file. Defaults to working directory. |
save_name |
Name of the converted output file (do not use spaces). |
A reformatted and standardized version of assessment model results for application in building a stock assessment reports and to easily adapt results among regional assessments. The resulting object is simply a transformed and machine readable version of a model output file. There are 2 options for adding data to the function. (1) Add the full path with the file name in output.file or (2) output.file is the file name and outdir is the path to the file without a trailing forward slash.
Samantha Schiano
Generate Citation for Stock Assessment Report
create_citation(author = NULL, title = NULL, year = NULL, office = NULL)
create_citation(author = NULL, title = NULL, year = NULL, office = NULL)
author |
Ordered list of authors included in the assessment. |
title |
The alternative title. Example: "Management Track Assessments Spring 2024". |
year |
Year the assessment is being conducted. Default is the year in which the report is rendered. |
office |
Regional Fisheries Science Center producing the report (i.e., AFSC, NEFSC, NWFSC, PIFSC, SEFSC, SWFSC). |
Generate a citation for use in publications and other
references associated with the stock assessment report produced
with asar
.
create_citation( title = "SA Report for Jellyfish", author = c("John Snow", "Danny Phantom", "Patrick Star"), year = 2024, office = "NEFSC" )
create_citation( title = "SA Report for Jellyfish", author = c("John Snow", "Danny Phantom", "Patrick Star"), year = 2024, office = "NEFSC" )
Create Quarto Document of Figures
create_figures_doc(subdir = NULL, include_all = TRUE, rda_dir = NULL)
create_figures_doc(subdir = NULL, include_all = TRUE, rda_dir = NULL)
subdir |
Location of subdirectory storing the assessment report template |
include_all |
TRUE/FALSE; Option to include all default figures for a stock assessment report. Default is true. |
rda_dir |
If the user has already created .rda files containing
figures, tables, alt text, and captions with |
A quarto document with pre-loaded R chunk that adds the stock assessment tables from the nmfs-ost/satf R package. The quarto document will become part of the stock assessment outline.
Create in-header latex document
create_inheader_tex(species = NULL, year = NULL, subdir)
create_inheader_tex(species = NULL, year = NULL, subdir)
species |
common species name - used for footer |
year |
year assessment is conducted |
subdir |
directory where other files will be copied into |
Create an in-header latex document that dynamically changes based on the species and year along with other factors.
Create Quarto Document of Tables
create_tables_doc(subdir = NULL, include_all = TRUE, rda_dir = NULL)
create_tables_doc(subdir = NULL, include_all = TRUE, rda_dir = NULL)
subdir |
subdirectory where the assessment report template is being stored |
include_all |
include all default tables for a stock assessment report |
rda_dir |
If the user has already created .rda files containing
figures, tables, alt text, and captions with |
Create a quarto document as part of a stock assessment outline with pre-loaded R chunk adding the stock assessment tables from the nmfs-ost/satf R package
To see templates included in the base skeleton, please run 'list.files(system.file('templates','skeleton', package = 'asar'))' in the console.
create_template( new_template = TRUE, format = c("pdf", "docx", "html", NULL), office = c("AFSC", "PIFSC", "NEFSC", "NWFSC", "SEFSC", "SWFSC"), region = NULL, complex = FALSE, species = NULL, spp_latin = NULL, year = NULL, file_dir = getwd(), author = "", add_author = NULL, include_affiliation = TRUE, simple_affiliation = FALSE, alt_title = FALSE, title = NULL, parameters = TRUE, param_names = NULL, param_values = NULL, convert_output = FALSE, fleet_names = NULL, resdir = NULL, model_results = NULL, model = NULL, new_section = NULL, section_location = NULL, type = "SAR", prev_year = NULL, custom = FALSE, custom_sections = NULL, include_figures = TRUE, include_tables = TRUE, add_image = FALSE, spp_image = NULL, bib_file = "asar_references.bib", rda_dir = getwd(), scale_amount = 1, end_year = NULL, n_projected_years = 10, relative = FALSE, recruitment_unit_label = "metric tons", ref_line = c("target", "MSY", "msy", "unfished"), ref_point = NULL, landings_unit_label = "metric tons", ref_point_sb = NULL, spawning_biomass_label = "metric tons", ref_line_sb = c("target", "MSY", "msy", "unfished"), indices_unit_label = "", biomass_unit_label = "mt", catch_unit_label = "mt" )
create_template( new_template = TRUE, format = c("pdf", "docx", "html", NULL), office = c("AFSC", "PIFSC", "NEFSC", "NWFSC", "SEFSC", "SWFSC"), region = NULL, complex = FALSE, species = NULL, spp_latin = NULL, year = NULL, file_dir = getwd(), author = "", add_author = NULL, include_affiliation = TRUE, simple_affiliation = FALSE, alt_title = FALSE, title = NULL, parameters = TRUE, param_names = NULL, param_values = NULL, convert_output = FALSE, fleet_names = NULL, resdir = NULL, model_results = NULL, model = NULL, new_section = NULL, section_location = NULL, type = "SAR", prev_year = NULL, custom = FALSE, custom_sections = NULL, include_figures = TRUE, include_tables = TRUE, add_image = FALSE, spp_image = NULL, bib_file = "asar_references.bib", rda_dir = getwd(), scale_amount = 1, end_year = NULL, n_projected_years = 10, relative = FALSE, recruitment_unit_label = "metric tons", ref_line = c("target", "MSY", "msy", "unfished"), ref_point = NULL, landings_unit_label = "metric tons", ref_point_sb = NULL, spawning_biomass_label = "metric tons", ref_line_sb = c("target", "MSY", "msy", "unfished"), indices_unit_label = "", biomass_unit_label = "mt", catch_unit_label = "mt" )
new_template |
TRUE/FALSE; Create a new template? If true, will pull the last saved stock assessment report skeleton. Default is false. |
format |
Rendering format (pdf, html, or docx). |
office |
Regional Fisheries Science Center producing the report (i.e., AFSC, NEFSC, NWFSC, PIFSC, SEFSC, SWFSC). |
region |
Full name of region in which the species is evaluated (if applicable). If the region is not specified for your center or species, do not use this variable. |
complex |
TRUE/FALSE; Is this a species complex? Default is false. |
species |
Full common name for target species. Split naming with a space and capitalize first letter(s). Example: "Dover sole". |
spp_latin |
Latin name for the target species. Example: "Pomatomus saltatrix". |
year |
Year the assessment is being conducted. Default is the year in which the report is rendered. |
file_dir |
Location of stock assessment files produced by this function. Default is the working directory. |
author |
Ordered list of authors included in the assessment. |
add_author |
Author that is not currently in the database and who should be temporarily added to the author list. Format as "First MI Last". Please leave a comment on the GitHub issues page to be added. |
include_affiliation |
TRUE/FALSE; Does the analyst want to include the authors' affiliations in the document? Default is false. |
simple_affiliation |
TRUE/FALSE; If including affiliations, should the office name function as the affiliation, rather than the full address? Default is true. |
alt_title |
TRUE/FALSE; Use a title that is not the default title (i.e., an alternative title)? Default is false. |
title |
The alternative title. Example: "Management Track Assessments Spring 2024". |
parameters |
TRUE/FALSE; For parameterization of the script. Default is true. |
param_names |
List of parameter names that will be called in the document. Parameters automatically included: office, region, species (each of which are listed as individual parameters for this function, above). |
param_values |
List of values associated with the order of parameter names. Parameters automatically included: office, region, species (each of which are listed as individual parameters for this function, above). |
convert_output |
TRUE/FALSE; Convert the output file to standard model format while creating report template? Default is false. |
fleet_names |
Deprecated: List of fleet names as described in BAM output file (abbreviations). |
resdir |
Filepath of the directory storing the model results file(s). Examples where dover_sole_2024 is the project root for absolute and relative filepaths, respectively: "C:/Users/patrick.star/Documents/dover_sole_2024/models", "here::here("models")". |
model_results |
The model results file. Before the stock assessment output file has been converted to a standardized format with the function convert_output.R, the model results file may be a .sso or .rdata file. After conversion, this file will be a .csv file. |
model |
Type of assessment model that was used to assess the stock (e.g., "BAM", "SS3", "AMAK", "ASAP", etc.). |
new_section |
Names of section(s) (e.g., introduction, results) or subsection(s) (e.g., a section within the introduction) that will be added to the document. Please make a short list if >1 section/subsection will be added. The template will be created as a quarto document, added into the skeleton, and saved for reference. |
section_location |
Where new section(s)/subsection(s) will be added to the skeleton template. Please use the notation of 'placement-section'. For example, 'in-introduction' signifies that the new content would be created as a child document and added into the 02_introduction.qmd. To add >1 (sub)section, make the location a list corresponding to the order of (sub)section names listed in the 'new_section' parameter. |
type |
Type of report to build. Default is SAR. |
prev_year |
Year in which the previous assessment report was conducted. Used to pull previous assessment template. |
custom |
TRUE/FALSE; Build custom sectioning for the template, rather than the default for stock assessments in your region? Default is false. |
custom_sections |
List of existing sections to include in the custom template. Note: this only includes sections within list.files(system.file("templates", "skeleton", package = "asar")). The name of the section, rather than the name of the file, can be used (e.g., 'abstract' rather than '00_abstract.qmd'). If adding a new section, also use parameters 'new_section' and 'section_location'. |
include_figures |
TRUE/FALSE; Should figures be included in the report? Default is true. |
include_tables |
TRUE/FALSE; Should tables be included in the report? Default is true. |
add_image |
TRUE/FALSE; Add image of species to the template that is not already included in the project's inst/resources/spp_img folder? Default is false. |
spp_image |
File path to the species' image if not using the image included in the project's repository. |
bib_file |
File path to a .bib file used for citing references in the report |
rda_dir |
If the user has already created .rda files containing
figures, tables, alt text, and captions with |
end_year |
The last year of assessment. The default is year - 1. |
n_projected_years |
Number of years spawning biomass is projected for. By default this number is set to 10 |
relative |
A logical value specifying if the resulting figures should be relative spawning biomass. The default is 'FALSE'. 'ref_line' indicates which reference point to use. |
recruitment_unit_label |
Units for recruitment |
ref_line |
An argument inherited from |
ref_point |
An argument inherited from |
landings_unit_label |
Units for landings |
ref_point_sb |
Identical definition as |
spawning_biomass_label |
Units for spawning biomass |
ref_line_sb |
A string specifying the type of
reference you want to compare spawning biomass to. The default is |
indices_unit_label |
Units for index of abundance/CPUE |
biomass_unit_label |
Abbreviated units for biomass |
catch_unit_label |
Abbreviated units for catch |
Create template and pull skeleton for a stock assessment report. Function builds a YAML specific to the region and utilizes current resources and workflows from different U.S. Fishery Science Centers. General sections are called as child documents in this skeleton and each of the child documents should be edited separately.
## Not run: create_template( new_section = "a_new_section", section_location = "before-introduction", rda_dir = here::here() ) create_template( new_template = TRUE, format = "pdf", office = "NWFSC", species = "Dover sole", spp_latin = "Microstomus pacificus", year = 2010, author = c("John Snow", "Danny Phantom", "Patrick Star"), include_affiliation = TRUE, resdir = "C:/Users/Documents/Example_Files", model_results = "Report.sso", model = "SS3", new_section = "an_additional_section", section_location = "after-introduction", rda_dir = here::here() ) asar::create_template( new_template = TRUE, format = "pdf", office = "PIFSC", species = "Striped marlin", spp_latin = "Kajikia audax", year = 2018, author = "Alba Tross", model = "BAM", new_section = c("a_new_section", "another_new_section"), section_location = c("before-introduction", "after-introduction"), custom = TRUE, custom_sections = c("executive_summary", "introduction"), rda_dir = here::here() ) create_template( new_template = TRUE, format = "pdf", office = "NWFSC", region = "my_region", complex = FALSE, species = "Bluefish", spp_latin = "Pomatomus saltatrix", year = 2010, author = c("John Snow", "Danny Phantom", "Patrick Star"), add_author = "Sun E Day", include_affiliation = TRUE, simple_affiliation = TRUE, alt_title = FALSE, title = "Management Track Assessments Spring 2024", parameters = TRUE, param_names = c("region", "year"), param_values = c("my_region", "2024"), convert_output = FALSE, fleet_names = c("fleet1", "fleet2", "fleet3"), resdir = "C:/Users/Documents/Example_Files", model_results = "Report.sso", model = "SS3", new_section = "an_additional_section", section_location = "before-discussion", type = "SAR", prev_year = 2021, custom = TRUE, custom_sections = c("executive_summary", "introduction", "discussion"), include_figures = TRUE, include_tables = TRUE, add_image = TRUE, spp_image = "dir/containing/spp_image", rda_dir = "C:/Users/Documents", scale_amount = 1, end_year = 2022, n_projected_years = 10, relative = FALSE, recruitment_unit_label = "metric tons", ref_line = "target", landings_unit_label = "metric tons", spawning_biomass_label = "metric tons", recruitment_unit_label = "metric tons", ref_line_sb = "target", indices_unit_label = "CPUE", biomass_unit_label = "mt", catch_unit_label = "mt" ) ## End(Not run)
## Not run: create_template( new_section = "a_new_section", section_location = "before-introduction", rda_dir = here::here() ) create_template( new_template = TRUE, format = "pdf", office = "NWFSC", species = "Dover sole", spp_latin = "Microstomus pacificus", year = 2010, author = c("John Snow", "Danny Phantom", "Patrick Star"), include_affiliation = TRUE, resdir = "C:/Users/Documents/Example_Files", model_results = "Report.sso", model = "SS3", new_section = "an_additional_section", section_location = "after-introduction", rda_dir = here::here() ) asar::create_template( new_template = TRUE, format = "pdf", office = "PIFSC", species = "Striped marlin", spp_latin = "Kajikia audax", year = 2018, author = "Alba Tross", model = "BAM", new_section = c("a_new_section", "another_new_section"), section_location = c("before-introduction", "after-introduction"), custom = TRUE, custom_sections = c("executive_summary", "introduction"), rda_dir = here::here() ) create_template( new_template = TRUE, format = "pdf", office = "NWFSC", region = "my_region", complex = FALSE, species = "Bluefish", spp_latin = "Pomatomus saltatrix", year = 2010, author = c("John Snow", "Danny Phantom", "Patrick Star"), add_author = "Sun E Day", include_affiliation = TRUE, simple_affiliation = TRUE, alt_title = FALSE, title = "Management Track Assessments Spring 2024", parameters = TRUE, param_names = c("region", "year"), param_values = c("my_region", "2024"), convert_output = FALSE, fleet_names = c("fleet1", "fleet2", "fleet3"), resdir = "C:/Users/Documents/Example_Files", model_results = "Report.sso", model = "SS3", new_section = "an_additional_section", section_location = "before-discussion", type = "SAR", prev_year = 2021, custom = TRUE, custom_sections = c("executive_summary", "introduction", "discussion"), include_figures = TRUE, include_tables = TRUE, add_image = TRUE, spp_image = "dir/containing/spp_image", rda_dir = "C:/Users/Documents", scale_amount = 1, end_year = 2022, n_projected_years = 10, relative = FALSE, recruitment_unit_label = "metric tons", ref_line = "target", landings_unit_label = "metric tons", spawning_biomass_label = "metric tons", recruitment_unit_label = "metric tons", ref_line_sb = "target", indices_unit_label = "CPUE", biomass_unit_label = "mt", catch_unit_label = "mt" ) ## End(Not run)
Write Stock Assessment Title
create_title( office = NULL, species = NULL, region = NULL, year = NULL, complex = NULL, type = NULL, spp_latin = NULL )
create_title( office = NULL, species = NULL, region = NULL, year = NULL, complex = NULL, type = NULL, spp_latin = NULL )
office |
Regional Fisheries Science Center producing the report (i.e., AFSC, NEFSC, NWFSC, PIFSC, SEFSC, SWFSC). |
species |
Full common name for target species. Split naming with a space and capitalize first letter(s). Example: "Dover sole". |
region |
Full name of region in which the species is evaluated (if applicable). If the region is not specified for your center or species, do not use this variable. |
year |
Year the assessment is being conducted. Default is the year in which the report is rendered. |
complex |
TRUE/FALSE; Is this a species complex? Default is false. |
type |
Type of report to build. Default is SAR. |
spp_latin |
Latin name for the target species. Example: "Pomatomus saltatrix". |
create_title( office = "SEFSC", species = "Red Snapper", region = "South Atlantic", year = 2024, type = "SAR", spp_latin = "Lutjanus campechanus" )
create_title( office = "SEFSC", species = "Red Snapper", region = "South Atlantic", year = 2024, type = "SAR", spp_latin = "Lutjanus campechanus" )
Create a title page latex document
create_titlepage_tex(office = "", subdir, species)
create_titlepage_tex(office = "", subdir, species)
office |
primary science center writing the document |
subdir |
directory where files are going to be held |
species |
target species for assessment |
Create a _titlepage.tex document that contains formatting options for a cover page. The only thing that changes currently is the primary author's fishery science center.
Function to export specified object from R environment found in the stock assessment report.
export_object(object = NULL, file_format = "docx", subdir = NULL)
export_object(object = NULL, file_format = "docx", subdir = NULL)
object |
Table, plot, or other object in the R environment to export for reference outside of the report document. |
file_format |
The format of the exported file. Options include pdf, docx, xlsx, csv, and rdata. Default is docx. |
subdir |
Directory where object will be exported. |
Objects put through this function will be put into the folder "exported" for better organization; DO NOT PUSH THESE TO THE REPO
Samantha Schiano
source <- c("NMFS Groundfish Survey", "", "U.S. Trawl Fisheries", "", "") data <- c("Survey biomass", "Age Composition", "Catch", "Age Composition", "Length Composition") years <- c( "1984-1999 (triennial), 2001-2013 (biennial)", "1984, 1987, 1990, 1993, 1996, 1999, 2003, 2005, 2007, 2009, 2011", "1961-2013", "1990,1998-2002, 2004, 2005, 2006, 2008, 2010", "1963-1977, 1991-1997" ) test_obj <- data.frame(source, data, years) export_object(object = test_obj, file_format = "csv", subdir = "~")
source <- c("NMFS Groundfish Survey", "", "U.S. Trawl Fisheries", "", "") data <- c("Survey biomass", "Age Composition", "Catch", "Age Composition", "Length Composition") years <- c( "1984-1999 (triennial), 2001-2013 (biennial)", "1984, 1987, 1990, 1993, 1996, 1999, 2003, 2005, 2007, 2009, 2011", "1961-2013", "1990,1998-2002, 2004, 2005, 2006, 2008, 2010", "1963-1977, 1991-1997" ) test_obj <- data.frame(source, data, years) export_object(object = test_obj, file_format = "csv", subdir = "~")
Add Formatting Arguments for YAML Header
format_quarto(format = NULL)
format_quarto(format = NULL)
format |
Rendering format (pdf, html, or docx). |
This function returns part of a quarto YAML header involved in formatting the document during rendering.
format_quarto(format = "pdf")
format_quarto(format = "pdf")