knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

autorecipes

Lifecycle: experimental R-CMD-check Codecov test coverage

The goal of autorecipes is to automate your weekly recipe planning, it takes care of:

  1. Creating and storing a database of recipes
  2. Customizing weekly meal plans
  3. Generating shopping lists of ingredients

Installation

autorecipes was developed for personal use and is no longer under active development. You can install the development version from GitHub:

devtools::install_github("dzhang32/autorecipes")

Usage

The below example gives a taste of autorecipes. If you would like to sink your teeth into a more detailed tutorial, head over to the vignette.

library("autorecipes")

# autorecipes contains an example set of recipes
head(recipes(recipebook_example))

# create a meal plan for lunch and dinner across all weekdays
recipebook <- create_meal_plan(recipebook_example)

head(meal_plan(recipebook))

recipebook <- create_shopping_list(recipebook)

head(shopping_list(recipebook))

Credits

autorecipes was developed using r BiocStyle::Biocpkg("biocthis").



dzhang32/autorecipes documentation built on April 15, 2022, 3:29 a.m.