loadURLData: Download and Unzip Web Datasets

Description Usage Arguments See Also Examples

Description

Download web datasets from URL to local path and unzip the data.

Usage

1
loadURLData(URL, folder, unzip = FALSE)

Arguments

URL

String of the url of the web dataset.

folder

String of the path of the folder you want to put the downloaded files. Folder path will be set as the working directory.

unzip

Boolean variable. If true, the ".zip" files will be unzipped.

See Also

document wordEmbed

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
# Download UCI Archived Dataset from URL:
# http://archive.ics.uci.edu/ml/machine-learning-databases/00217/C50.zip
# Reuter 50 DataSet
URL = "http://archive.ics.uci.edu/ml/machine-learning-databases/00217/C50.zip"
folder = getwd()
loadURLData(URL, folder, unzip = TRUE)

## End(Not run)

softmaxreg documentation built on May 2, 2019, 6:08 a.m.