# list all available projects
EpochRepos()
# downloader for the fragility data
dl <- EpochDownloader(id = "fragility")
# list all Epoch objects in the downloader
names(dl)
# download the first Epoch object
# \donttest{
dl[1]
# equivalent to (index by name)
dl[names(dl)[1]]
# }
# download the multiple Epoch objects
# \donttest{
dl[c(1, 2)]
# equivalent to (index by name)
dl[names(dl)[c(1, 2)]]
# }
EpochRepos()
Run the code above in your browser using DataLab