hide messages in RMD

If you write Rmd file, the messages are always very disturbing. There are two methods to avoid it: 1. Global method {r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE, warning = FALSE,…

0 Comments

change R version

link is from https://support.rstudio.com/hc/en-us/articles/200486138-Using-Different-Versions-of-R default R adress: $which R /usr/bin/R it can be Force R Studio use the specific version: export RSTUDIO_WHICH_R=/usr/local/bin/R

0 Comments

Configure Git for RStudio

There is an article from RStudio explained how to configure Git for RStudio. But it is not very detailed. I ran into many problem during the configuration and wasted a…

0 Comments