I am operating matrices with R 3.1 and RStudio 0.99.
I have my R Script and with cmd+enter it works without problem.
I created an Rmd for reporting but I ha
I also ran into this today, and fixed it by using cache.lazy = FALSE in the setup chunk in my .Rmd.
cache.lazy = FALSE
So what is inside of the first chunk in my R Markdown file looks like this:
library(knitr) knitr::opts_chunk$set(cache = TRUE, warning = FALSE, message = FALSE, cache.lazy = FALSE)