Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 535 Bytes

DSCI521_lab4_Q9.md

File metadata and controls

32 lines (24 loc) · 535 Bytes

DSCI521_Lab4_Q7

2022-09-26

Ice Cream Flavors

We can make a choose some ice cream flavors and put them in a list.

flavors <- list("vanilla", "chocolate", "strawberry")
flavors
## [[1]]
## [1] "vanilla"
## 
## [[2]]
## [1] "chocolate"
## 
## [[3]]
## [1] "strawberry"

Chocolate Brands

We can also choose some brands of chocolate and put them in a vector.

chocolates <- c("Lindt", "Cadbury", "Ferrero")
chocolates
## [1] "Lindt"   "Cadbury" "Ferrero"