feeding_from_ratio: Determine starter feeding amounts based on ratios

View source: R/starter.R

feeding_from_ratioR Documentation

Determine starter feeding amounts based on ratios

Description

Generate measurements for feeding a starter based on starter:flour:water ratios like 1:4:4, 1:5:5, etc.

Usage

feeding_from_ratio(starter = 1, flour = 4, water = 4, flour_g = 100)

Arguments

starter

Numeric. Ratio of starter. (e.g., 1 in a 1:4:4 ratio.)

flour

Numeric. Ratio of flour (e.g., 4 in a 1:4:4 ratio.)

water

Numeric. Ratio of water (e.g., 4 in a 1:4:4 ratio.)

flour_g

Amount of flour to use in the feeding

Value

Text printed to the console with feeding amounts.

Examples

feeding_from_ratio()

# A 1:5:5 feeding with 50g of flour
feeding_from_ratio(
  starter = 1, flour = 5, water = 5,
  flour_g = 50
)

andrewheiss/sourrr documentation built on Oct. 24, 2023, 12:01 p.m.