| Title: | Graphical Interface for Loading Datasets | 
| Version: | 2.3.0 | 
| Description: | Graphical interface for loading datasets in RStudio from all installed (including unloaded) packages, also includes command line interfaces. | 
| Depends: | R (≥ 3.0.0) | 
| Imports: | shiny, miniUI, DT | 
| License: | GPL-3 | 
| Encoding: | UTF-8 | 
| RoxygenNote: | 7.2.3 | 
| Suggests: | testthat (≥ 3.0.0), covr | 
| Config/testthat/edition: | 3 | 
| NeedsCompilation: | no | 
| Packaged: | 2023-11-09 23:33:31 UTC; bquast | 
| Author: | Bastiaan quast | 
| Maintainer: | Bastiaan quast <bquast@gmail.com> | 
| Repository: | CRAN | 
| Date/Publication: | 2023-11-10 00:30:02 UTC | 
Interface for loading Datasets
Description
Interface for loading Datasets
List all datasets
Description
List all datasets
Usage
alldata(package = NULL, lib.loc = NULL, all = TRUE, drop.defaults = FALSE)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. | 
List datasets in an HTML Browser
Description
List datasets in an HTML Browser
Usage
browseDatasets(
  package = NULL,
  lib.loc = NULL,
  all = TRUE,
  drop.defaults = FALSE
)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. | 
View datasets from all installed packages
Description
View datasets from all installed packages
Usage
datasets(package = NULL, lib.loc = NULL, all = TRUE, drop.defaults = FALSE)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. | 
Load Datasets from a Menu
Description
Load Datasets from a Menu
Usage
datasets.load()
Get information on installed datasets.
Description
Get information on installed datasets.
Usage
getDatasetInfo(
  package = NULL,
  lib.loc = NULL,
  all = TRUE,
  drop.defaults = FALSE
)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. | 
Print function for browseDatasets objects
Description
Print function for browseDatasets objects
Usage
## S3 method for class 'browseDatasets'
print(x, ...)
Arguments
| x | Object of class datasets | 
| ... | Further arguments, ignored by the print method. | 
Print function for datasets class objects
Description
Print function for datasets class objects
Usage
## S3 method for class 'datasets'
print(x, ...)
Arguments
| x | an object used to select a method. | 
| ... | further arguments passed to or from other methods. | 
Print datasets in the console
Description
Print datasets in the console
Usage
printDatasets(
  package = NULL,
  lib.loc = NULL,
  all = TRUE,
  drop.defaults = FALSE
)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. | 
Prompt for dataset in the console
Description
Prompt for dataset in the console
Usage
promptDatasets(
  package = NULL,
  lib.loc = NULL,
  all = TRUE,
  drop.defaults = FALSE
)
Arguments
| package | a character vector with the names of packages to search through, or NULL in which "all" packages (as defined by argument all) are searched. | 
| lib.loc | a character vector of directory names of R libraries, or NULL. The default value of NULL corresponds to all libraries currently known. | 
| all | logical; if TRUE search all available packages in the library trees specified by lib.loc, and if FALSE, search only attached packages. | 
| drop.defaults | logical; if TRUE, do not include the datasets from the datasets package. |