Quinn He HW2

Homework 2 where I try to open datasets and see what I can do with it.

Quinn He
09-16-2021
hotel_bookings <- read_csv("../../_data/hotel_bookings.csv")

Amount of weekend nights stayed in (per party)

ggplot(hotel_bookings, aes(stays_in_weekend_nights)) + geom_bar()

Guests that have children

ggplot(hotel_bookings, aes(children)) + geom_bar()

I wanted to see if there is a relationship between people who stay in on weekend nights and those who have children. It does not appear a large number of guests have children so what else could it be? Perhaps babies?

ggplot(hotel_bookings, aes(babies)) + geom_bar()

Cleary that also does not have an impact on the decision.

Months arrived by customeres

 ggplot(data = hotel_bookings) +
geom_bar(mapping = aes(x = arrival_date_month))

Most popular hotel type

 ggplot(data = hotel_bookings) + 
  geom_bar(mapping = aes(x = hotel))

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

He (2021, Sept. 16). DACSS 601 Fall 2021: Quinn He HW2. Retrieved from https://mrolfe.github.io/DACSS601Fall21/posts/2021-09-16-quinn-he-hw2/

BibTeX citation

@misc{he2021quinn,
  author = {He, Quinn},
  title = {DACSS 601 Fall 2021: Quinn He HW2},
  url = {https://mrolfe.github.io/DACSS601Fall21/posts/2021-09-16-quinn-he-hw2/},
  year = {2021}
}