In the Hands-On Activity: Cleaning data in R, you may still have the error message when you follow the instruction to copy the line setwd("project/Course 7/Week 3") before it.
Solution:
bookings_df <- read_csv("Course 7/Week 3/hotel_bookings.csv")
In the Hands-On Activity: Cleaning data in R, you may still have the error message when you follow the instruction to copy the line setwd("project/Course 7/Week 3") before it.
Solution:
bookings_df <- read_csv("Course 7/Week 3/hotel_bookings.csv")
mkdir Week3
library(here)
library(readr)
bookings_df <- read_csv(here("Week3/hotel_bookings.csv"))
here
always starts from the current project root directory.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.