knitr::opts_chunk$set(echo = TRUE)
# Path to _targets/ is defined in the _targets.yaml file
# targets::tar_config_set(store = "../Analysis/_targets")

# List all scripts in R/
tryCatch(
    script_list <- list.files("../R", full.names = TRUE),
    error = function(x){
      script_list <- list.files("R", full.names = TRUE)
      })

# Source scripts
invisible(sapply(script_list, source))

tar_load_all()

Descriptive Statistics

Summary of the data

summary(my_data)

Distribution observations

get_plot_obs(data = my_data)

Inferential Statistics

summary(lm_fit)


ClaudioZandonella/my-project documentation built on Jan. 29, 2022, 9:17 a.m.