Includes functions and files for book "Análise de Dados Financeiros e Econômicos com o R", available in Amazon and Online.
# only in github (will not pass cran checks due suplementary files)
devtools::install_github('msperlin/adfeR')
adfeR::list_available_data()
file_name <- 'SP500.csv'
path_to_file <- adfeR::get_data_file(file_name)
df <- readr::read_csv(path_to_file)
flag <- adfeR::copy_book_files(path_to_copy = '~')
See this blog post for details.
library(adfeR)
names_students <- c('Marcelo', 'Ricardo', 'Tarcizio')
ids_students <- 1:length(names_students) # probably id card?
chapters <- 1:3 # chapters from 1 to 13
dir_output <- file.path(tempdir(), 'ExamsFiles')
l_exams <- build_exercises(students_names = names_students,
students_ids = ids_students,
chapters_to_include = chapters,
dir_out = dir_output)