File: deliveries.R

package info (click to toggle)
r-cran-modeldata 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 5,592 kB
  • sloc: sh: 13; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 812 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#' Food Delivery Time Data
#'
#' @details
#' These data are from a study of food delivery times in minutes (i.e., the time from the
#' initial order to receiving the food) for a single restaurant. The data
#' contains 10,012 orders from a specific restaurant. The predictors include:
#' \itemize{
#' \item The time, in decimal hours, of the order.
#' \item The day of the week for the order.
#' \item The approximate distance in miles between the restaurant and the delivery
#'       location.
#' \item A set of 27 predictors that count the number of distinct menu items
#'       in the order.
#' }
#'
#' No times are censored.
#'
#' @name deliveries
#' @aliases deliveries
#' @docType data
#' @return \item{deliveries}{a tibble}
#'
#' @keywords datasets
#' @examples
#' data(deliveries)
#' str(deliveries)
NULL