I'm using the "brms" package in RStudio Cloud, but in attempting to compile the C++ model, I receive the error:
"Error in sink(type = "output") : invalid connection"
Does anyone know of a solution to this problem? Thank you!
Link to project: https://rstudio.cloud/project/1176347
library(brms)
library(tidyverse)
iris <- iris
mod1 <- brm(Sepal.Width ~ Petal.Width + (1 | Species), data = iris)