I am stuck at the position of my project under "load data set" under process.
I am trying to process the files that were given to me as zip files which I have downloaded and unzipped. After that, I uploaded them to the files section (bottom right) of RStudio in the project tab. Yesterday after I tried to run my code the error that showed was:
"/bin/sh: 1: install.packages("tidyverse"): not found"
Today it was: " [image] Show Traceback
Error: '202012-divvy-tripdata.csv' does not exist in current working directory ('/cloud/project')."
The code I ran was: {r}
month1 <- read_csv("202012-divvy-tripdata.csv") as well as {r}
month1 <- read_csv("project/tripdata/202012-divvy-tripdata.csv")
Please help to move on from this step of my project!
Do you see a folder named tripdata in the list? If so, click on its name to open the folder.
Is there a file named 202012-divvy-tripdata.csv in the folder? If so, you can click on the two dots to the right of the upward green arrow to return to the parent directory /cloud/project.
For anyone who does still have issues, when I first tried to run this it was giving me "could not find function read_csv". So then I did "install.packages(readr)" -> "library(reader)" then ran the code " month1 <- read_csv("tripdata/202012-divvy-tripdata.csv")"