Hi there,
I am somewhat new to R and needed a bit of help as I am experiencing a conundrum. I have pasted my code below:
#Section 1 - 1.1
df <- read.csv("spotify_dataset.csv")
print(df)
#Section 1 - 1.2
set.seed(10088444239)
I recieved an error after running the set.seed() function. It says the following:
Error in set.seed(10088444239) : supplied seed is not a valid integer
In addition: Warning message:
In set.seed(10088444239) : NAs introduced by coercion to integer range
Not sure if this error is due to not correctly importing this dataframe into r in section 1.1. Any help is greatly appreciated.