Datasets

Resources Data

For Econometrics and Machine Learning

shikokuchuo
05-05-2021

Datasets

library(magrittr)
tibble::tribble(
  ~Source, ~URL, ~Package,
  "Fred", "https://fred.stlouisfed.org/", "Quantmod",
  "Quandl", "https://www.quandl.com/", "Quandl",
  "Yahoo Finance", "https://finance.yahoo.com/", "Quantmod",
  "Damodaran NYU Stern", "http://people.stern.nyu.edu/adamodar/New_Home_Page/datacurrent.html", "",
  "UCI Machine Learning Repository", "https://archive.ics.uci.edu/ml/index.php", "",
  "Project Gutenberg", "https://www.gutenberg.org/", "gutenbergr"
) %>%
  dplyr::mutate(URL = purrr::map_chr(URL, ~paste0("<a href='", .x, "'>", .x, "</a>"))) %>%
  DT::datatable(escape = FALSE)

Citation

For attribution, please cite this work as

shikokuchuo (2021, May 5). shikokuchuo{net}: Datasets. Retrieved from https://shikokuchuo.net/posts/06-datasets/

BibTeX citation

@misc{shikokuchuo2021datasets,
  author = {shikokuchuo, },
  title = {shikokuchuo{net}: Datasets},
  url = {https://shikokuchuo.net/posts/06-datasets/},
  year = {2021}
}