To install package from GitHub:
# install.packages('devtools')
devtools::install_github('byapparov/rftp')
FTP_HOST
- domain of the FTP(S) serverFTP_PORT
- port of the FTP(S) server, defaults to 21FTP_USER
- user nameFTP_PASSWORD
- password# domain and auth details will be added to a give path
# reading: ftps:://{FTP_USER}:{FTP_PASSWORD}@{FTP_SERVER}/root/file.csv
dt <- ftpRead("root/file.csv")
# get all files that contain `input` in the name
files <- ftpListFiles("root/a/", "input")
dt <- lapply(files, ftpRead)
dt <- rbindList(dt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.