We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search for a datasets from a specific package
str(data(package = "dplyr")) #> List of 4 #> $ title : chr "Data sets" #> $ header : NULL #> $ results: chr [1:5, 1:4] "dplyr" "dplyr" "dplyr" "dplyr" ... #> ..- attr(*, "dimnames")=List of 2 #> .. ..$ : NULL #> .. ..$ : chr [1:4] "Package" "LibPath" "Item" "Title" #> $ footer : NULL #> - attr(*, "class")= chr "packageIQR"
Search for all available datasets
str(data()) #> List of 4 #> $ title : chr "Data sets" #> $ header : NULL #> $ results: chr [1:104, 1:4] "datasets" "datasets" "datasets" "datasets" ... #> ..- attr(*, "dimnames")=List of 2 #> .. ..$ : NULL #> .. ..$ : chr [1:4] "Package" "LibPath" "Item" "Title" #> $ footer : chr "Use 'data(package = .packages(all.available = TRUE))'\nto list the data sets in all *available* packages." #> - attr(*, "class")= chr "packageIQR"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Search for a datasets from a specific package
Search for all available datasets
The text was updated successfully, but these errors were encountered: