Skip to contents

Creates a RecipeCertification object. Typically you would use certify_recipe to certify a recipe in a pipeline instead.

Usage

recipe_certification(level = "community", certified_by = NULL, notes = NULL)

Arguments

level

Character. One of "community" (default), "reviewed", or "official".

certified_by

RecipeUser or NULL (default NULL). Required for reviewed/official.

notes

Character or NULL (default NULL). Additional notes.

Value

A RecipeCertification object.

Examples

# Default community certification
cert <- recipe_certification()

# Official certification
inst <- recipe_user("IECON", type = "institution")
cert <- recipe_certification("official", certified_by = inst)