jpcaveiro / rmdmoodle

rmdmoodle
MIT License
0 stars 0 forks source link

referir estes dois comandos na documentação: scipen = 999 e knitr::opts_chunk$set(echo = TRUE) #51

Open jpcaveiro opened 2 months ago

jpcaveiro commented 2 months ago
#Avoid scientific notation in all document
#instructs R to prefer displaying numbers in decimal form (fixed notation) unless it would require more than 999 digits
options(scipen = 999)

#Na commandline: str(knitr::opts_chunk$get())
knitr::opts_chunk$set(echo = TRUE)