R/cuisines.R

#' Cuisines Dataset.
#'
#' A dataset of recipes scraped from Allrecipes.com, containing ingredients, cooking times, nutrition facts, country, ratings, and review counts. The data has been parsed and cleaned to ensure analysis-readiness.
#'
#' @format A data frame with 2218 rows and 17 variables:
#' \describe{
#'   \item{name}{Name of the recipe}
#'   \item{country}{The country/region the cuisine is from.}
#'   \item{url}{Link to the recipe}
#'   \item{author}{Author of the recipe}
#'   \item{date_published}{When the recipe was published/updated}
#'   \item{ingredients}{The ingredients of the recipe}
#'   \item{calories}{Calories per serving}
#'   \item{fat}{Fat per serving}
#'   \item{carbs}{carbs per serving}
#'   \item{protein}{Proteins per serving}
#'   \item{avg_rating}{Average rating out of 5 stars}
#'   \item{total_ratings}{Number of ratings received}
#'   \item{reviews}{Number of written reviews}
#'   \item{prep_time}{Preparation time in minutes}
#'   \item{cook_time}{Cooking time in minutes}
#'   \item{total_time}{Prep + cook time in minutes.Note that this value may not always match the actual total effort required, as other time-related fields (such as refrigeration, marination, fry time, or additional wait periods) have been excluded due to inconsistent availability across recipes}
#'   \item{servings}{Number of servings}
#' }
"cuisines"

Try the tastyR package in your browser

Any scripts or data that you put into this service are public.

tastyR documentation built on Aug. 30, 2025, 1:08 a.m.