Hello there RStudio friends,
I am working on a data analytics course, and I cannot upload a project folder called hotel_bookings.csv? I already installed and loaded the following three packages: tidyverse, janitor, and skimr. If you have any information to share, I would be willing to hear. I wish Coursera had a phone line to ask these questions, but they don't and encourage the use of this community.
Step 2: Import data
The data in this example is originally from the article Hotel Booking Demand Datasets (Hotel booking demand datasets - ScienceDirect), written by Nuno Antonio, Ana Almeida, and Luis Nunes for Data in Brief, Volume 22, February 2019.
In the chunk below, you will use the read_csv() function to import data from a .csv in the project folder called "hotel_bookings.csv" and save it as a data frame called bookings_df:
bookings_df <- read_csv("hotel_bookings.csv")