Download and Install Datasets for Hmisc, rms, and Statistical Modeling
Download and Install Datasets for Hmisc, rms, and Statistical Modeling
This function downloads and makes ready to use datasets from the main web site for the Hmisc and rms libraries. For , the datasets were stored in compressed save format and getHdata makes them available by running load
after download. For S-Plus, the datasets were stored in data.dump format and are made available by running data.restore after import. The dataset is run through the cleanup.import function. Calling getHdata with no file argument provides a character vector of names of available datasets that are currently on the web site. For , 's default browser can optionally be launched to view html files that were already prepared using the Hmisc command html(contents()) or to view .txt or .html data description files when available.
If options(localHfiles=TRUE) the scripts are read from local directory ~/web/data/repo instead of from the web server.
getHdata(file, what = c("data","contents","description","all"), where="https://hbiostat.org/data/repo")
Arguments
file: an unquoted name of a dataset on the web site, e.g. prostate . Omit file to obtain a list of available datasets.
what: specify what="contents" to browse the contents (metadata) for the dataset rather than fetching the data themselves. Specify what="description" to browse a data description file if available. Specify what="all" to retrieve the data and see the metadata and description.
where: URL containing the data and metadata files
Returns
getHdata() without a file argument returns a character vector of dataset base names. When a dataset is downloaded, the data frame is placed in search position one and is not returned as value of getHdata.
Author(s)
Frank Harrell
See Also
download.file, cleanup.import, data.restore, load
Examples
## Not run:getHdata()# download list of available datasetsgetHdata(prostate)# downloads, load( ) or data.restore( )# runs cleanup.import for S-Plus 6getHdata(valung,"contents")# open browser (options(browser="whatever"))# after downloading valung.html# (result of html(contents()))getHdata(support,"all")# download and open one browser windowdatadensity(support)attach(support)# make individual variables availablegetHdata(plasma,"all")# download and open two browser windows# (description file is available for plasma)## End(Not run)