name_and_quant | R Documentation |
Takeout orders from an Indian restaurant.
A dataset containing the total quantity of each dish ordered, as well as the dish's price and status as vegetarian or meat.
name_and_quant
A dataframe with 238 rows and 5 variables:
Name of the dish
Number of times the dish was ordered
Price of the dish
Proportion of all orders
Whether the dish is vegetarian (Veg) or not (Meat)
pillar::glimpse(name_and_quant) name_and_quant |> dplyr::group_by(Meat.Veg) |> dplyr::summarise(Num.Dishes.Sold = sum(Total.Quantity), Total.Revenue = sum(Total.Quantity * Product.Price))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.