This is a simple R client for DuckDuckGo’s Instant Answer API.
::install_github("dirkschumacher/duckduckr") devtools
library(duckduckr)
<- duckduck_answer("ggplot")
res
# meta data of the call is part of the attributes
stopifnot(attr(res, "status") == "OK")
# the original http call
attr(res, "source")
#> [1] "https://api.duckduckgo.com/?q=ggplot&no_redirect=0&no_html=0&format=json&skip_disambig=0&t=duckduckr"
$Abstract res
ggplot2 is a data visualization package for the statistical programming language R. Created by Hadley Wickham in 2005, ggplot2 is an implementation of Leland Wilkinson’s Grammar of Graphics—a general scheme for data visualization which breaks up graphs into semantic components such as scales and layers. ggplot2 can serve as a replacement for the base graphics in R and contains a number of defaults for web and print display of common scales. Since 2005, ggplot2 has grown in use to become one of the most popular R packages. It is licensed under GNU GPL v2.
If you found a bug or want to propose a feature, feel free to visit the issues page.