Hi,
I want to be able to load an R-file from an URL. This code worked before I updated my Mac os to catalina.
library(RCurl)
valence_model <- readRDS(url("https://oscarkjell.se/text_models/trained_anew1999_valence.rds"))
After the update I now get the following error:
Error in readRDS(url("https://oscarkjell.se/text_models/trained_anew1999_valence.rds")) :
error reading from connection
(The files does not seem to be corrupt since I can still load it with above code on another Mac that I have not updated the OS on yet. I've alos tried saving without any compression and rda-format )
Im using R version 3.6.2 (2019-12-12); and RStudio Version 1.2.5033.
Any help or solutions are much appreciated.
Oscar