I shouldn't be running out of RAM. It's a new laptop (32GB, 1TB) with only data analytics software on it.
I'm working on the capstone project following the Google Data Analytics Certificate coursework. The dataset is called Case Study 1 - Bikeshare. I need to load 12 .csv or .xsls files to R and go from there. The most I can get loaded before the error message is 9. I'm working in https://rstudio.cloud, using Microsoft Edge browser. I had the same problem on my old laptop, using Google Chrome.
I've tried loading using the Import Dataset functions, as well as two ways with code:
x202107<- read_csv("202107-divvy-tripdata.csv")
x202108<- read_csv("202108-divvy-tripdata.csv")
x202109<- read_csv("202109-divvy-tripdata.csv")
x202110<- read_csv("202110-divvy-tripdata.csv")
x202111<- read_csv("202111-divvy-tripdata.csv")
x202112<- read_csv("202112-divvy-tripdata.csv")
x202201<- read_csv("202201-divvy-tripdata.csv")
x202202<- read_csv("202202-divvy-tripdata.csv")
x202203<- read_csv("202203-divvy-tripdata.csv")
x202204<- read_csv("202204-divvy-tripdata.csv")
x202205<- read_csv("202205-divvy-tripdata.csv")
x202206<- read_csv("202206-divvy-tripdata.csv")
and
library(data.table)
x202107<- fread("202107-divvy-tripdata.csv")
x202108<- fread("202108-divvy-tripdata.csv")
x202109<- fread("202109-divvy-tripdata.csv")
x202110<- fread("202110-divvy-tripdata.csv")
x202111<- fread("202111-divvy-tripdata.csv")
x202112<- fread("202112-divvy-tripdata.csv")
x202201<- fread("202201-divvy-tripdata.csv")
x202202<- fread("202202-divvy-tripdata.csv")
x202203<- fread("202203-divvy-tripdata.csv")
x202204<- fread("202204-divvy-tripdata.csv")
x202205<- fread("202205-divvy-tripdata.csv")
x202206<- fread("202206-divvy-tripdata.csv")
I always get the same error message.
What other information do I need to provide? And thank you for your help.