removed script breaking space in "read.csv" line.

Don't name directories with spaces, it's best practice. This broke my cronR script.
This commit is contained in:
Lucky 2023-08-27 22:02:27 -03:00 committed by GitHub
parent 61147d111e
commit 9469e2ddf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,8 @@ library("dplyr")
# but the uncommented method is superior.
#load CSVs using code.
df1 <- read.csv("~/Documents/Stats/4Chan Scraper/Aug 24 2023 18:11:19.csv")
df2 <- read.csv("~/Documents/Stats/4Chan Scraper/Aug 25 2023 10:51:42.csv")
df1 <- read.csv("~/Documents/Stats/4ChanScraper/Aug 24 2023 18:11:19.csv")
df2 <- read.csv("~/Documents/Stats/4ChanScraper/Aug 25 2023 10:51:42.csv")
# Merge data frame, and take difference b/w day 1 and day 2