ETC5521-2022 / assignment1-emu

assignment1-emu created by GitHub Classroom
0 stars 1 forks source link

Global options #1

Open BrendiA opened 2 years ago

BrendiA commented 2 years ago

Report is looking great so far!

You can avoid writing chunk options for each code chunk by using global options that apply to every chunk in your file:

knitr::opts_chunk$set(echo = FALSE,
                      message = FALSE,
                      warning = FALSE)