Datasets.load: Difference between revisions
Appearance
Content deleted Content added
→External links: Added {{R (programming language)}} |
Merged content to R package#datasets.load, redirecting; 2018 proposal with consensus for alternative target (easy-merge) Tag: New redirect |
||
Line 1: | Line 1: | ||
⚫ | |||
{{Lowercase title}} |
|||
{{Infobox software |
|||
| title = datasets.load |
|||
| name = datasets.load |
|||
| logo = |
|||
| logo caption = |
|||
| screenshot = Datasets.load 1.4.0.png |
|||
| caption = datasets.load GUI searching and loading datasets |
|||
| collapsible = |
|||
| author = [[Bastiaan Quast]] |
|||
| developer = |
|||
| released = {{Start date|2016|12|14|df=yes}} |
|||
| discontinued = |
|||
| latest release version = 1.4.0 |
|||
| latest release date = {{Start date and age|2020|04|27|df=yes}} |
|||
| latest preview version = 1.4.0.9000 |
|||
| latest preview date = {{Start date and age|2020|05|01|df=yes}} |
|||
| repo = https://github.com/bquast/datasets.load |
|||
| programming language = [[R (programming language)|R]] |
|||
| operating system = Windows, MacOS, Linux |
|||
| platform = |
|||
| size = 520.6 kB (v. 1.2.0) |
|||
| language = [[R (programming language)|R]] |
|||
| language count = |
|||
| language footnote = |
|||
| genre = |
|||
| license = [[GPL v3]] |
|||
| alexa = |
|||
| website = {{URL|1=https://cran.r-project.org/package=datasets.load|2=cran.r-project.org}} |
|||
}} |
|||
{{Afd-merge to|R (programming language)|Datasets.load|24 September 2018}} |
|||
'''datasets.load''' is an [[R package]] and [[RStudio]] plugin, that provides both a [[Graphical User Interface]] (GUI), as well as a [[Command Line Interface]] for loading datasets.<ref>{{Citation|last=Quast|first=Bastiaan|title=datasets.load: Interfaces for Loading Datasets|date=2019-12-12|url=https://cran.r-project.org/package=datasets.load|volume=|pages=|archive-url=https://web.archive.org/web/20200430061643/https://cran.r-project.org/web/packages/datasets.load/index.html|access-date=2020-04-30|archive-date=2020-04-30}}</ref> Normally, R only makes visible datasets of packages that are loaded, '''datasets.load''' shows the list of all installed datasets on the local library, including datasets included with packages that are not loaded. It is one of the top 10% of most downloaded R packages. |
|||
{{R from merge}} |
|||
== R datasets == |
|||
{{R to section}} |
|||
R functionality is extendible using extensions call R packages. The central place from which to install packages is the [https://cran.r-project.org/ Central R Archive network] (CRAN). From CRAN, R packages can be installed using the command (here to install datasets.load): |
|||
install.packages('datasets.load') |
|||
Once installed, R packages can be loaded using the command: |
|||
library(datasets.load) |
|||
After a package has been loaded, objects available from the package - such as functions and datasets - can be accessed. |
|||
The datasets from all the loaded packages can listed using the command: |
|||
data() |
|||
However, datasets from packages that are not loaded, are not listed. As a result, many R users have access to datasets on their local install that are never used. The '''datasets.load''' packages addresses this by listed all datasets that are in any packages installed (loaded or not loaded). |
|||
== Usage == |
|||
[[File:Datasets.load.gif|thumb|datasets.load GUI demonstration]] |
|||
A video demonstrating the GUI usage is available via the thumbnail on the right and on [https://www.youtube.com/watch?v=dl_bYlDLydI YouTube]. |
|||
The usage of '''datasets.load''''s [[Command Line Interface]] is demonstrated in the code snippet below. |
|||
<syntaxhighlight lang="rsplus"> |
|||
> # install the datasets.load package |
|||
> install.packages('datasets.load') |
|||
> # load the datasets.load package |
|||
> library(datasets.load) |
|||
> # list the objects in the package (all functions) |
|||
⚫ | |||
[1] "alldata" "browseDatasets" "datasets" "datasets.load" "getDatasetInfo" "printDatasets" |
|||
[7] "promptDatasets" |
|||
> # show all datasets (in a new window) |
|||
> datasets() |
|||
</syntaxhighlight> |
|||
== Functionality == |
|||
The basic functionality of '''datasets.load''' is to expose all installed datasets to the user, including datasets in packages that are not loaded. There is a [[Command Line Interface]] (CLI) which can be used from any R terminal. |
|||
In addition to the CLI, there is also a [[Graphical User Interface]] for RStudio using [[RStudio#Addins|RStudio Addins]]. |
|||
== Reception == |
|||
The initial release on CRAN of version 0.1.0 took place in December 2016, and averaged a download rate of 1,000 times per month, from the RStudio servers alone. With the release of version 0.3.0 in 2018, the download rate increased to 2,000 times per month, putting the package in the 9th percentile of most popular R packages.<ref>{{Citation|last=Quast|first=Bastiaan|title=Visual interface for loading datasets in RStudio|date=2020-04-30|url=https://github.com/bquast/datasets.load|volume=|pages=|archive-url=https://web.archive.org/web/20200501080947/https://github.com/bquast/datasets.load|access-date=2020-05-01|archive-date=2020-05-01}}</ref> The package was reviewed in the 2017 article "R Packages worth a look" on Data Analytics & R,<ref>{{Cite news|last=Laux|first=Michael|date=2017-01-05|title=R Packages worth a look|language=en-US|work=Data Analytics & R|url=https://advanceddataanalytics.net/2017/01/05/r-packages-worth-a-look-667/|url-status=live|access-date=2020-05-01|archive-url=https://web.archive.org/web/20200103104538/https://analytixon.com/2017/01/05/r-packages-worth-a-look-667/|archive-date=2020-01-03}}</ref> which further increased usage. It is also frequently preinstalled on university computers,<ref name=":0">{{Cite web|url=https://wiki.carleton.edu/display/itskb/R+packages+installed|title=R packages installed - ITS - Carlpedia - Carleton College Wiki|last=|first=|date=|website=wiki.carleton.edu|url-status=live|archive-url=https://web.archive.org/web/20200103104913/https://wiki.carleton.edu/display/itskb/R+packages+installed|archive-date=2020-01-03|access-date=2020-01-03}}</ref> in order to help make R more accessible to students. |
|||
Version 1.0.0 was released on 12 December 2019, with a version 1.4.0 which was built against R 4.0.0 being released on 27 April 2020.<ref name=":0" /> |
|||
The RStudio CRAN mirror download logs |
|||
<ref>{{cite web|title=RStudio CRAN logs|url=http://cran-logs.rstudio.com/}}</ref> show that the package is downloaded more than 2,000 times per month from those servers |
|||
,<ref>{{cite web|title=CRANlogs datasets.load package|url=https://cranlogs.r-pkg.org/badges/datasets.load}}</ref> with a total of over 65,000 downloads since the first release |
|||
,<ref>{{cite web|title=CRANlogs datasets.load package|url=https://cranlogs.r-pkg.org/badges/grand-total/datasets.load}}</ref> according to RDocumentation.org, this puts the package in the 9th percentile of most popular R packages.<ref>{{Cite web|url=https://www.rdocumentation.org/packages/datasets.load/versions/1.4.0|title=datasets.load package R Documentation|last=|first=|date=|website=www.rdocumentation.org|url-status=live|archive-url=https://web.archive.org/web/20200103153839/https://www.rdocumentation.org/packages/datasets.load/versions/1.0.0/|archive-date=2020-01-03|access-date=2020-04-30}}</ref> On [https://www.rdocumentation.org/ Rdocumentation.org] it is listed as the second most downloaded package under the keyword "datasets"<ref>{{Cite web|url=https://www.rdocumentation.org/search?q=datasets|title=RDocumentation: Results for "datasets"|last=|first=|date=|website=www.rdocumentation.org|url-status=live|archive-url=https://web.archive.org/web/20200103104002/https://www.rdocumentation.org/search?q=datasets|archive-date=2020-01-03|access-date=2020-04-30}}</ref> (after the base R package datasets), with "datasets" being the most popular keyword on Rdocumentation.org.<ref>{{Cite web|url=https://www.rdocumentation.org/trends|title=RDocumentation Trends|last=|first=|date=|website=www.rdocumentation.org|url-status=live|archive-url=https://web.archive.org/web/20200103104048/https://www.rdocumentation.org/trends|archive-date=2020-01-03|access-date=2020-04-30}}</ref> |
|||
== References == |
|||
{{reflist}} |
|||
==External links== |
|||
*[https://github.com/bquast/datasets.load Repository] on [[GitHub]] |
|||
*[https://cran.r-project.org/package=datasets.load datasets.load package] on [[R (programming language)#Packages|CRAN]] |
|||
{{R (programming language)}} |
|||
[[Category:Deep learning]] |
[[Category:Deep learning]] |
||
[[Category:Free science software]] |
[[Category:Free science software]] |
Revision as of 11:38, 20 November 2020
Redirect to:
- From a merge: This is a redirect from a page that was merged into another page. This redirect was kept in order to preserve the edit history of this page after its content was merged into the content of the target page. Please do not remove the tag that generates this text (unless the need to recreate content on this page has been demonstrated) or delete this page.
- For redirects with substantive page histories that did not result from page merges use {{R with history}} instead.
- To a section: This is a redirect from a topic that does not have its own page to a section of a page on the subject. For redirects to embedded anchors on a page, use {{R to anchor}} instead.