Package rvest. R topics documented: August 29, Version Title Easily Harvest (Scrape) Web Pages

Size: px
Start display at page:

Download "Package rvest. R topics documented: August 29, Version Title Easily Harvest (Scrape) Web Pages"

Transcription

1 Version Title Easily Harvest (Scrape) Web Pages Package rvest August 29, 2016 Wrappers around the 'ml2' and 'httr' packages to make it easy to download, then manipulate, HTML and XML. Depends R (>= 3.0.1), ml2 Imports httr (>= 0.5), selectr, magrittr Suggests testthat, knitr, png, stringi (>= 0.3.1), rmarkdown, covr Encoding UTF-8 License GPL-3 LazyData true VignetteBuilder knitr RoygenNote URL BugReports NeedsCompilation no Author Hadley Wickham [aut, cre], RStudio [cph] Maintainer Hadley Wickham <hadley@rstudio.com> Repository CRAN Date/Publication :57:12 R topics documented: encoding google_form html html_form html_nodes html_session

2 2 encoding html_table html_tet jump_to pluck session_history set_values submit_form Inde 13 encoding Guess and repair faulty character encoding. These functions help you respond to web pages that declare incorrect encodings. You can use guess_encoding to figure out what the real encoding is (and then supply that to the encoding argument of html), or use repair_encoding to fi character vectors after the fact. guess_encoding() repair_encoding(, from = NULL) from A character vector. The encoding that the string is actually in. If NULL, stringi These function are wrappers around tools from the fantastic stringi package, so you ll need to make sure to have that installed. # A file with bad encoding included in the package path <- system.file("html-e", "bad-encoding.html", package = "rvest") <- read_html(path) %>% html_nodes("p") %>% html_tet() guess_encoding() # Two valid encodings, only one of which is correct read_html(path, encoding = "ISO ") %>% html_nodes("p") %>% html_tet() read_html(path, encoding = "ISO ") %>% html_nodes("p") %>% html_tet()

3 google_form 3 google_form Make link to google form given id Make link to google form given id google_form() Unique identifier for form google_form("1m9b8dsynfydjpwsk6ur_bzf8rv_04ma3rmaabiveoui") html Parse an HTML page. html is deprecated: please use read_html() instead. html(,..., encoding = "") ## S3 method for class 'response' read_ml(,..., encoding = "", as_html = FALSE) ## S3 method for class 'session' read_ml(,..., as_html = FALSE) A url, a local path, a string containing html, or a response from an httr request.... If is a URL, additional arguments are passed on to GET(). encoding as_html Specify encoding of document. See iconvlist() for complete list. If you have problems determining the correct encoding, try stri_enc_detect Optionally parse an ml file as if it s html.

4 4 html_form # From a url: google <- read_html(" encoding = "ISO ") google %>% ml_structure() google %>% html_nodes("div") # From a string: (minimal html 5 document) # minimal <- read_html("<!doctype html> <meta charset=utf-8> <title>blah</title> <p>i'm the content") minimal minimal %>% ml_structure() # From an httr request google2 <- read_html(httr::get(" html_form Parse forms in a page. Parse forms in a page. html_form() A node, node set or document. See Also HTML 4.01 form specification: html_form(read_html(" html_form(read_html(" bo_office <- read_html(" bo_office %>% html_node("form") %>% html_form()

5 html_nodes 5 html_nodes Select nodes from an HTML document More easily etract pieces out of HTML documents using XPath and css selectors. CSS selectors are particularly useful in conjunction with it makes it easy to find eactly which selector you should be using. If you have t used css selectors before, work your way through the fun tutorial at html_nodes(, css, path) html_node(, css, path) css, path Either a document, a node set or a single node. Nodes to select. Supply one of css or path depending on whether you want to use a css or path 1.0 selector. html_node vs html_nodes html_node is like [[ it always etracts eactly one element. When given a list of nodes, html_node will always return a list of the same length, the length of html_nodes might be longer or shorter. CSS selector support CSS selectors are translated to XPath selectors by the selectr package, which is a port of the python cssselect library, It implements the majority of CSS3 selectors, as described in REC-css3-selectors /. The eceptions are listed below: Pseudo selectors that require interactivity are ignored: :hover, :active, :focus, :target, :visited The following pseudo classes don t work with the wild card element, *: *:first-of-type, *:last-of-type, *:nth-of-type, *:nth-last-of-type, *:only-of-type It supports :contains(tet) You can use!=, [foo!=bar] is the same as :not([foo=bar]) :not() accepts a sequence of simple selectors, not just single simple selector.

6 6 html_session # CSS selectors ateam <- read_html(" html_nodes(ateam, "center") html_nodes(ateam, "center font") html_nodes(ateam, "center font b") # But html_node is best used in conjunction with %>% from magrittr # You can chain subsetting: ateam %>% html_nodes("center") %>% html_nodes("td") ateam %>% html_nodes("center") %>% html_nodes("font") td <- ateam %>% html_nodes("center") %>% html_nodes("td") td # When applied to a list of nodes, html_nodes() returns all nodes, # collapsing results into a new nodelist. td %>% html_nodes("font") # html_node() returns the first matching node. If there are no matching # nodes, it returns a "missing" node if (utils::packageversion("ml2") > "0.1.2") { td %>% html_node("font") } # To pick out an element at specified position, use magrittr::etract2 # which is an alias for [[ library(magrittr) ateam %>% html_nodes("table") %>% etract2(1) %>% html_nodes("img") ateam %>% html_nodes("table") %>% [[ (1) %>% html_nodes("img") # Find all images contained in the first two tables ateam %>% html_nodes("table") %>% [ (1:2) %>% html_nodes("img") ateam %>% html_nodes("table") %>% etract(1:2) %>% html_nodes("img") # XPath selectors # chaining with XPath is a little trickier - you may need to vary # the prefi you're using - // always selects from the root noot # regardless of where you currently are in the doc ateam %>% html_nodes(path = "//center//font//b") %>% html_nodes(path = "//b") html_session Simulate a session in an html browser. Simulate a session in an html browser.

7 html_table 7 html_session(url,...) is.session() url Location to start session... Any additional httr config to use throughout session. Methods An object to test to see if it s a session. A session object responds to a combination of httr and html methods: use cookies(), headers(), and status_code() to access properties of the request; and html_nodes to access the html. # s <- html_session(" s %>% jump_to("hadley-wickham.jpg") %>% jump_to("/") %>% session_history() s %>% jump_to("hadley-wickham.jpg") %>% back() %>% session_history() s %>% follow_link(css = "p a") html_table Parse an html table into a data frame. Parse an html table into a data frame. html_table(, header = NA, trim = TRUE, fill = FALSE, dec = ".") header trim fill dec A node, node set or document. Use first row as header? If NA, will use first row if it consists of <th> tags. Remove leading and trailing whitespace within each cell? If TRUE, automatically fill rows with fewer than the maimum number of columns with NAs. The character used as decimal mark.

8 8 html_tet Assumptions html_table currently makes a few assumptions: No cells span multiple rows Headers are in the first row tdist <- read_html(" tdist %>% html_node("table.infobo") %>% html_table(header = FALSE) births <- read_html(" html_table(html_nodes(births, "table")[[2]]) # If the table is badly formed, and has different number of rows in # each column use fill = TRUE. Here's it's due to incorrect colspan # specification. skiing <- read_html(" skiing %>% html_table(fill = TRUE) html_tet Etract attributes, tet and tag name from html. Etract attributes, tet and tag name from html. html_tet(, trim = FALSE) html_name() html_children() html_attrs() html_attr(, name, default = NA_character_) trim name default A document, node, or node set. If TRUE will trim leading and trailing spaces. Name of attribute to retrieve. A string used as a default value when the attribute does not eist in every node.

9 jump_to 9 Value html_attr, html_tag and html_tet, a character vector; html_attrs, a list. movie <- read_html(" cast <- html_nodes(movie, "#titlecast span.itemprop") html_tet(cast) html_name(cast) html_attrs(cast) html_attr(cast, "class") jump_to Navigate to a new url. jump_to() takes a url (either relative or absolute); follow_link takes an epression that refers to a link (an <a> tag) on the current page. jump_to(, url,...) follow_link(, i, css, path,...) url A session. A URL, either relative or absolute, to navigate to.... Any additional httr configs to apply to this request. i css path You can select with: an integer selects the ith link a string first link containing that tet (case sensitive) Nodes to select. Supply one of css or path depending on whether you want to use a css or path 1.0 selector. Nodes to select. Supply one of css or path depending on whether you want to use a css or path 1.0 selector. s <- html_session(" s <- s %>% follow_link("github") s <- s %>% back() s %>% follow_link("readr")

10 10 session_history pluck Etract elements of a list by position. Etract elements of a list by position. pluck(, i, type) i type A list A string or integer. Type of output, if known session_history History navigation tools History navigation tools session_history() back() A session.

11 set_values 11 set_values Set values in a form. Set values in a form. set_values(form,...) Value form Form to modify... Name-value pairs giving fields to modify An updated form object search <- html_form(read_html(" set_values(search, q = "My little pony") set_values(search, hl = "fr") ## Not run: set_values(search, btni = "blah") submit_form Submit a form back to the server. Submit a form back to the server. submit_form(session, form, submit = NULL,...) session form submit Session to submit form to. Form to submit Name of submit button to use. If not supplied, defaults to first submission button on the form (with a message).... Additional arguments passed on to GET() or POST()

12 12 submit_form Value If successful, the parsed html response. Throws an error if http request fails. To access other elements of response, construct it yourself using the elements returned by submit_request. test <- google_form("1m9b8dsynfydjpwsk6ur_bzf8rv_04ma3rmaabiveoui") f0 <- html_form(test)[[1]] f1 <- set_values(f0, entry = "abc")

13 Inde Topic deprecated html, 3 back (session_history), 10 status_code, 7 stri_enc_detect, 3 submit_form, 11 cookies, 7 encoding, 2 follow_link (jump_to), 9 GET, 3, 11 google_form, 3 guess_encoding (encoding), 2 headers, 7 html, 3 html_attr (html_tet), 8 html_attrs (html_tet), 8 html_children (html_tet), 8 html_form, 4 html_name (html_tet), 8 html_node (html_nodes), 5 html_nodes, 5, 7 html_session, 6 html_table, 7 html_tet, 8 iconvlist, 3 is.session (html_session), 6 jump_to, 9 pluck, 10 POST, 11 read_ml.response (html), 3 read_ml.session (html), 3 repair_encoding (encoding), 2 session_history, 10 set_values, 11 13

Package rvest. R topics documented: February 20, Version Title Easily Harvest (Scrape) Web Pages

Package rvest. R topics documented: February 20, Version Title Easily Harvest (Scrape) Web Pages Version 0.2.0 Title Easily Harvest (Scrape) Web Pages Package rvest February 20, 2015 Wrappers around the XML and httr packages to make it easy to download, then manipulate, both html and ml. Depends R

More information

Package fastdummies. January 8, 2018

Package fastdummies. January 8, 2018 Type Package Package fastdummies January 8, 2018 Title Fast Creation of Dummy (Binary) Columns and Rows from Categorical Variables Version 1.0.0 Description Creates dummy columns from columns that have

More information

Package readxl. April 18, 2017

Package readxl. April 18, 2017 Title Read Excel Files Version 1.0.0 Package readxl April 18, 2017 Import excel files into R. Supports '.xls' via the embedded 'libxls' C library and '.xlsx'

More information

Package canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

Package gtrendsr. August 4, 2018

Package gtrendsr. August 4, 2018 Type Package Title Perform and Display Google Trends Queries Version 1.4.2 Date 2018-08-03 Package gtrendsr August 4, 2018 An interface for retrieving and displaying the information returned online by

More information

Package datasets.load

Package datasets.load Title Interface for Loading Datasets Version 0.1.0 Package datasets.load December 14, 2016 Visual interface for loading datasets in RStudio from insted (unloaded) s. Depends R (>= 3.0.0) Imports shiny,

More information

Package edgarwebr. December 22, 2017

Package edgarwebr. December 22, 2017 Title SEC Filings Access Package edgarwebr December 22, 2017 A set of methods to access and parse live filing information from the U.S. Securities and Echange Commission (SEC - ) including

More information

Package robotstxt. November 12, 2017

Package robotstxt. November 12, 2017 Date 2017-11-12 Type Package Package robotstxt November 12, 2017 Title A 'robots.txt' Parser and 'Webbot'/'Spider'/'Crawler' Permissions Checker Version 0.5.2 Provides functions to download and parse 'robots.txt'

More information

Package gcite. R topics documented: February 2, Type Package Title Google Citation Parser Version Date Author John Muschelli

Package gcite. R topics documented: February 2, Type Package Title Google Citation Parser Version Date Author John Muschelli Type Package Title Google Citation Parser Version 0.9.2 Date 2018-02-01 Author John Muschelli Package gcite February 2, 2018 Maintainer John Muschelli Scrapes Google Citation pages

More information

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3. Type Package Title GeoJSON to Simple Feature Converter Version 1.3.0 Date 2019-01-11 Package geojsonsf January 11, 2019 Converts Between GeoJSON and simple feature objects. License GPL-3 Encoding UTF-8

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Package covr. October 18, 2018

Package covr. October 18, 2018 Encoding UTF-8 Title Test Coverage for Packages Version 3.2.1 Package covr October 18, 2018 Track and report code coverage for your package and (optionally) upload the results to a coverage service like

More information

Package gtrendsr. October 19, 2017

Package gtrendsr. October 19, 2017 Type Package Title Perform and Display Google Trends Queries Version 1.4.0 Date 2017-10-19 Package gtrendsr October 19, 2017 An interface for retrieving and displaying the information returned online by

More information

Package condformat. October 19, 2017

Package condformat. October 19, 2017 Type Package Title Conditional Formatting in Data Frames Version 0.7.0 Date 2017-10-19 URL http://github.com/zeehio/condformat Package condformat October 19, 2017 BugReports http://github.com/zeehio/condformat/issues

More information

Package knitrprogressbar

Package knitrprogressbar Type Package Title Provides Progress Bars in 'knitr' Version 1.1.0 Package knitrprogressbar February 20, 2018 Provides a progress bar similar to 'dplyr' that can write progress out to a variety of locations,

More information

Package rgho. R topics documented: January 18, 2017

Package rgho. R topics documented: January 18, 2017 Package rgho January 18, 2017 Title Access WHO Global Health Observatory Data from R Version 1.0.1 Author Antoine Filipovic-Pierucci [aut,cre] Maintainer Antoine Filipovic-Pierucci

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Package kdtools. April 26, 2018

Package kdtools. April 26, 2018 Type Package Package kdtools April 26, 2018 Title Tools for Working with Multidimensional Data Version 0.3.1 Provides various tools for working with multidimensional data in R and C++, including etremely

More information

Package labelled. December 19, 2017

Package labelled. December 19, 2017 Package labelled December 19, 2017 Type Package Title Manipulating Labelled Data Version 1.0.1 Date 2017-12-19 Maintainer Joseph Larmarange Work with labelled data imported from

More information

Package selectr. February 20, 2013

Package selectr. February 20, 2013 Package selectr February 20, 2013 Type Package Title Translate CSS Selectors to XPath Expressions Version 0.2-1 Date 2013-02-21 License BSD Depends R (>= 2.15.2) Imports methods, XML, stringr Suggests

More information

Package validara. October 19, 2017

Package validara. October 19, 2017 Type Package Title Validate Brazilian Administrative Registers Version 0.1.1 Package validara October 19, 2017 Maintainer Gustavo Coelho Contains functions to validate administrative

More information

Package haven. April 9, 2015

Package haven. April 9, 2015 Version 0.2.0 Title Import SPSS, Stata and SAS Files Package haven April 9, 2015 Import foreign statistical formats into R via the embedded ReadStat C library (https://github.com/wizardmac/readstat). Package

More information

Package calpassapi. August 25, 2018

Package calpassapi. August 25, 2018 Title R Interface to Access CalPASS API Version 0.0.1 Package calpassapi August 25, 2018 Description Implements methods for querying data from CalPASS using its API. CalPASS Plus. MMAP API V1. .

More information

Package pkgbuild. October 16, 2018

Package pkgbuild. October 16, 2018 Title Find Tools Needed to Build R Packages Version 1.0.2 Package pkgbuild October 16, 2018 Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms

More information

Package utf8. May 24, 2018

Package utf8. May 24, 2018 Version 1.1.4 Title Unicode Text Processing Depends R (>= 2.10) Suggests knitr, rmarkdown, testthat Package utf8 May 24, 2018 Process and print 'UTF- 8' encoded international text (Unicode). Input, validate,

More information

Package labelvector. July 28, 2018

Package labelvector. July 28, 2018 Title Label Attributes for Atomic Vectors Version 0.1.0 Package labelvector July 28, 2018 Labels are a common construct in statistical software providing a human readable description of a variable. While

More information

Package meme. November 2, 2017

Package meme. November 2, 2017 Title Create Meme Version 0.0.7 Package meme November 2, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package opencage. January 16, 2018

Package opencage. January 16, 2018 Package opencage January 16, 2018 Type Package Title Interface to the OpenCage API Version 0.1.4 Tool for accessing the OpenCage API, which provides forward geocoding (from placename to longitude and latitude)

More information

Package docxtools. July 6, 2018

Package docxtools. July 6, 2018 Title Tools for R Markdown to Docx Documents Version 0.2.0 Language en-us Package docxtools July 6, 2018 A set of helper functions for using R Markdown to create documents in docx format, especially documents

More information

Package tidyselect. October 11, 2018

Package tidyselect. October 11, 2018 Title Select from a Set of Strings Version 0.2.5 Package tidyselect October 11, 2018 A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your

More information

Package patentsview. July 12, 2017

Package patentsview. July 12, 2017 Type Package Title An R Client to the PatentsView API Version 0.1.0 Encoding UTF-8 Package patentsview July 12, 2017 Provides functions to simplify the PatentsView API ()

More information

Package postgistools

Package postgistools Type Package Package postgistools March 28, 2018 Title Tools for Interacting with 'PostgreSQL' / 'PostGIS' Databases Functions to convert geometry and 'hstore' data types from 'PostgreSQL' into standard

More information

Package semver. January 6, 2017

Package semver. January 6, 2017 Type Package Title 'Semantic Versioning V2.0.0' Parser Version 0.2.0 Package semver January 6, 2017 Tools and functions for parsing, rendering and operating on semantic version strings. Semantic versioning

More information

Package tibble. August 22, 2017

Package tibble. August 22, 2017 Encoding UTF-8 Version 1.3.4 Title Simple Data Frames Package tibble August 22, 2017 Provides a 'tbl_df' class (the 'tibble') that provides stricter checking and better formatting than the traditional

More information

Package glue. March 12, 2019

Package glue. March 12, 2019 Package glue March 12, 2019 Title Interpreted String Literals Version 1.3.1 An implementation of interpreted string literals, inspired by Python's Literal String Interpolation

More information

Package stapler. November 27, 2017

Package stapler. November 27, 2017 Version 0.6.3 Package stapler November 27, 2017 Title Simultaneous Truth and Performance Level Estimation An implementation of Simultaneous Truth and Performance Level Estimation (STAPLE) .

More information

Package haven. July 9, 2017

Package haven. July 9, 2017 Version 1.1.0 Package haven July 9, 2017 Title Import and Eport 'SPSS', 'Stata' and 'SAS' Files Import foreign statistical formats into R via the embedded 'ReadStat' C library, .

More information

Package ecoseries. R topics documented: September 27, 2017

Package ecoseries. R topics documented: September 27, 2017 Package ecoseries September 27, 2017 Title An R Interface to Brazilian Central Bank and Sidra APIs and the IPEA Data Version 0.1.5 Date 2017-09-27 Maintainer Fernando Teixeira

More information

Package tiler. June 9, 2018

Package tiler. June 9, 2018 Version 0.2.0 Package tiler June 9, 2018 Title Create Geographic and Non-Geographic Map Tiles Creates geographic map tiles from geospatial map files or nongeographic map tiles from simple image files.

More information

Package datapasta. January 24, 2018

Package datapasta. January 24, 2018 Title R Tools for Data Copy-Pasta Version 3.0.0 Package datapasta January 24, 2018 RStudio addins and R functions that make copy-pasting vectors and tables to text painless. Depends R (>= 3.3.0) Suggests

More information

Package assertive.code

Package assertive.code Type Package Title Assertions to Check Properties of Code Version 0.0-1 Date 2015-10-06 Author Richard Cotton [aut, cre] Package assertive.code August 29, 2016 Maintainer Richard Cotton

More information

Package embed. November 19, 2018

Package embed. November 19, 2018 Version 0.0.2 Package embed November 19, 2018 Title Extra Recipes for Encoding Categorical Predictors Description Factor predictors can be converted to one or more numeric representations using simple

More information

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2 Title Finding Files in Project Subdirectories Version 1.3-2 Package rprojroot January 3, 2018 Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a

More information

Package goodpractice

Package goodpractice Title Advice on R Package Building Version 1.0.2 Package goodpractice May 2, 2018 Give advice about good practices when building R packages. Advice includes functions and syntax to avoid, package structure,

More information

Package bigqueryr. October 23, 2017

Package bigqueryr. October 23, 2017 Package bigqueryr October 23, 2017 Title Interface with Google BigQuery with Shiny Compatibility Version 0.3.2 Interface with 'Google BigQuery', see for more information.

More information

Package meme. December 6, 2017

Package meme. December 6, 2017 Title Create Meme Version 0.1.1 Package meme December 6, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Package narray. January 28, 2018

Package narray. January 28, 2018 Package narray January 28, 2018 Title Subset- And Name-Aware Array Utility Functions Version 0.4.0 Author Michael Schubert Maintainer Michael Schubert Stacking

More information

Package SEMrushR. November 3, 2018

Package SEMrushR. November 3, 2018 Type Package Title R Interface to Access the 'SEMrush' API Version 0.1.0 Package SEMrushR November 3, 2018 Implements methods for querying SEO (Search Engine Optimization) and SEM (Search Engine Marketing)

More information

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health Type Package Version 0.1.7 Title Fingertips Data for Public Health Package fingertipsr May 25, 2018 Fingertips () contains data for many indicators of public health in England.

More information

Package githubinstall

Package githubinstall Type Package Version 0.2.2 Package githubinstall February 18, 2018 Title A Helpful Way to Install R Packages Hosted on GitHub Provides an helpful way to install packages hosted on GitHub. URL https://github.com/hoxo-m/githubinstall

More information

Package rsppfp. November 20, 2018

Package rsppfp. November 20, 2018 Package rsppfp November 20, 2018 Title R's Shortest Path Problem with Forbidden Subpaths Version 1.0.3 Maintainer Melina Vidoni An implementation of functionalities

More information

Package qualmap. R topics documented: September 12, Type Package

Package qualmap. R topics documented: September 12, Type Package Type Package Package qualmap September 12, 2018 Title Opinionated Approach for Digitizing Semi-Structured Qualitative GIS Data Version 0.1.1 Provides a set of functions for taking qualitative GIS data,

More information

Package htmltidy. September 29, 2017

Package htmltidy. September 29, 2017 Package htmltidy September 29, 2017 Title Tidy Up and Test XPath Queries on HTML and XML Content Version 0.4.0 Encoding UTF-8 Maintainer Bob Rudis HTML documents can be beautiful and pristine.

More information

Package customlayout

Package customlayout Type Package Package customlayout October 31, 2018 Title Arrange Elements on the R's Drawing Area or Inside the PowerPoint's Slide Version 0.3.0 Maintainer Zygmunt Zawadzki Create complicated

More information

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava'

Package jdx. R topics documented: January 9, Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Type Package Title 'Java' Data Exchange for 'R' and 'rjava' Package jdx January 9, 2018 Description Simplifies and extends data exchange between 'R' and 'Java'. Version 0.1.0 License GPL (>= 2 BSD_3_clause

More information

Package data.world. April 5, 2018

Package data.world. April 5, 2018 Package data.world April 5, 2018 Title Functions and Add-Ins for Working with 'data.world' Data Sets and Projects Version 1.2.2 High-level tools for working with 'data.world' data sets. 'data.world' is

More information

Package spark. July 21, 2017

Package spark. July 21, 2017 Title 'Sparklines' in the 'R' Terminal Version 2.0.0 Author Gábor Csárdi Package spark July 21, 2017 Maintainer Gábor Csárdi A 'sparkline' is a line chart, without axes and labels.

More information

Package redux. May 31, 2018

Package redux. May 31, 2018 Title R Bindings to 'hiredis' Version 1.1.0 Package redux May 31, 2018 A 'hiredis' wrapper that includes support for transactions, pipelining, blocking subscription, serialisation of all keys and values,

More information

Package plumber. December 2, 2017

Package plumber. December 2, 2017 Package plumber Encoding UTF-8 Type Package Title An API Generator for R Version 0.4.4 Date 2017-12-01 License MIT + file LICENSE December 2, 2017 BugReports https://github.com/trestletech/plumber/issues

More information

Package shinyfeedback

Package shinyfeedback Type Package Package shinyfeedback August 20, 2018 Title Displays User Feedback Next to Shiny Inputs Version 0.1.0 Date 2018-08-19 Easily display user feedback next to Shiny inputs. The feedback message

More information

Package eply. April 6, 2018

Package eply. April 6, 2018 Type Package Title Apply a Function Over Expressions Version 0.1.2 Package eply April 6, 2018 Evaluate a function over a data frame of expressions. License GPL-3 Depends R (>= 3.0.0) Imports magrittr,

More information

Package confidence. July 2, 2017

Package confidence. July 2, 2017 Type Package Package confidence July 2, 2017 Title Confidence Estimation of Environmental State Classifications Functions for estimating and reporting multi-year averages and corresponding confidence intervals

More information

Package haven. February 19, 2019

Package haven. February 19, 2019 Package haven February 19, 2019 Title Import and Eport 'SPSS', 'Stata' and 'SAS' Files Version 2.1.0 Import foreign statistical formats into R via the embedded 'ReadStat' C library, .

More information

Package sessioninfo. June 21, 2017

Package sessioninfo. June 21, 2017 Title R Session Information Version 1.0.0 Package sessioninfo June 21, 2017 Author Gábor Csárdi, R core, Hadley Wickham, Winston Chang, Robert M Flight, Kirill Müller Maintainer Gábor Csárdi

More information

Package bigqueryr. June 8, 2018

Package bigqueryr. June 8, 2018 Package bigqueryr June 8, 2018 Title Interface with Google BigQuery with Shiny Compatibility Version 0.4.0 Interface with 'Google BigQuery', see for more information.

More information

Package smoothr. April 4, 2018

Package smoothr. April 4, 2018 Type Package Title Smooth and Tidy Spatial Features Version 0.1.0 Package smoothr April 4, 2018 Tools for smoothing and tidying spatial features (i.e. lines and polygons) to make them more aesthetically

More information

Package dat. January 20, 2018

Package dat. January 20, 2018 Package dat Type Package Title Tools for Data Manipulation Version 0.4.0 January 20, 2018 BugReports https://github.com/wahani/dat/issues An implementation of common higher order functions with syntactic

More information

Package rzeit2. January 7, 2019

Package rzeit2. January 7, 2019 Type Package Title Client for the ZEIT ONLINE Content API Version 0.2.3 Package rzeit2 January 7, 2019 Interface to gather newspaper articles from 'DIE ZEIT' and 'ZEIT ONLINE', based on a multilevel query

More information

Package essurvey. August 23, 2018

Package essurvey. August 23, 2018 Package essurvey August 23, 2018 Title Download Data from the European Social Survey on the Fly Version 1.0.2 BugReports https://github.com/ropensci/essurvey/issues Download data from the European Social

More information

Package keyholder. May 19, 2018

Package keyholder. May 19, 2018 Title Store Data About Rows Version 0.1.2 Package keyholder May 19, 2018 Tools for keeping track of information, named ``keys'', about rows of data frame like objects. This is done by creating special

More information

Package graphframes. June 21, 2018

Package graphframes. June 21, 2018 Type Package Title Interface for 'GraphFrames' Version 0.1.1 Package graphframes June 21, 2018 Maintainer Kevin Kuo A 'sparklyr' etension that provides

More information

Package editdata. October 7, 2017

Package editdata. October 7, 2017 Type Package Title 'RStudio' Addin for Editing a 'data.frame' Version 0.1.2 Package editdata October 7, 2017 Imports shiny (>= 0.13, miniui (>= 0.1.1, rstudioapi (>= 0.5, DT, tibble An 'RStudio' addin

More information

Package rcmdcheck. R topics documented: November 10, 2018

Package rcmdcheck. R topics documented: November 10, 2018 Package rcmdcheck November 10, 2018 Title Run 'R CMD check' from 'R' and Capture Results Version 1.3.2 Author Gábor Csárdi Maintainer Gábor Csárdi Run 'R CMD check' from 'R' programmatically,

More information

Package ezknitr. September 16, 2016

Package ezknitr. September 16, 2016 Package ezknitr September 16, 2016 Title Avoid the Typical Working Directory Pain When Using 'knitr' Version 0.6 An extension of 'knitr' that adds flexibility in several ways. One common source of frustration

More information

Package table1. July 19, 2018

Package table1. July 19, 2018 Type Package Version 1.1 Date 2018-07-18 Title Tables of Descriptive Statistics in HTML Package table1 July 19, 2018 Create HTML tables of descriptive statistics, as one would epect to see as the first

More information

Package desc. May 1, 2018

Package desc. May 1, 2018 Title Manipulate DESCRIPTION Files Version 1.2.0 Package desc May 1, 2018 Maintainer Gábor Csárdi Tools to read, write, create, and manipulate DESCRIPTION s. It is intended for

More information

Package tfruns. February 18, 2018

Package tfruns. February 18, 2018 Type Package Title Training Run Tools for 'TensorFlow' Version 1.3 Package tfruns February 18, 2018 Create and manage unique directories for each 'TensorFlow' training run. Provides a unique, time stamped

More information

Package errorlocate. R topics documented: March 30, Type Package Title Locate Errors with Validation Rules Version 0.1.3

Package errorlocate. R topics documented: March 30, Type Package Title Locate Errors with Validation Rules Version 0.1.3 Type Package Title Locate Errors with Validation Rules Version 0.1.3 Package errorlocate March 30, 2018 Errors in data can be located and removed using validation rules from package 'validate'. License

More information

Package svglite. September 11, 2017

Package svglite. September 11, 2017 Version 1.2.1 Title An 'SVG' Graphics Device Package svglite September 11, 2017 A graphics device for R that produces 'Scalable Vector Graphics'. 'svglite' is a fork of the older 'RSvgDevice' package.

More information

Package condusco. November 8, 2017

Package condusco. November 8, 2017 Type Package Package condusco November 8, 2017 Title Query-Driven Pipeline Execution and Query Templates Version 0.1.0 Author Roland Stevenson Maintainer Roland Stevenson Description

More information

Package messaging. May 27, 2018

Package messaging. May 27, 2018 Type Package Package messaging May 27, 2018 Title Conveniently Issue Messages, Warnings, and Errors Version 0.1.0 Description Provides tools for creating and issuing nicely-formatted text within R diagnostic

More information

Package roperators. September 28, 2018

Package roperators. September 28, 2018 Type Package Package roperators September 28, 2018 Title Additional Operators to Help you Write Cleaner R Code Version 1.1.0 Maintainer Ben Wiseman Provides string arithmetic,

More information

Package workflowr. July 6, 2018

Package workflowr. July 6, 2018 Type Package Package workflowr July 6, 2018 Title A Framework for Reproducible and Collaborative Data Science Date 2018-07-06 Version 1.1.1 Combines literate programming ('knitr' and 'rmarkdown') and version

More information

Package virustotal. May 1, 2017

Package virustotal. May 1, 2017 Title R Client for the VirusTotal API Version 0.2.1 Maintainer Gaurav Sood Package virustotal May 1, 2017 Use VirusTotal, a Google service that analyzes files and URLs for viruses,

More information

Package omu. August 2, 2018

Package omu. August 2, 2018 Package omu August 2, 2018 Title A Metabolomics Analysis Tool for Intuitive Figures and Convenient Metadata Collection Version 1.0.2 Facilitates the creation of intuitive figures to describe metabolomics

More information

Package spelling. December 18, 2017

Package spelling. December 18, 2017 Title Tools for Spell Checking in R Version 1.1 Package spelling December 18, 2017 Spell checking common document formats including latex, markdown, manual pages, and description files. Includes utilities

More information

Package rtika. May 2, 2018

Package rtika. May 2, 2018 Type Package Title R Interface to 'Apache Tika' Version 0.1.8 Package rtika May 2, 2018 Maintainer Sasha Goodman Imports curl, sys, stats, utils, rappdirs Suggests jsonlite, xml2,

More information

Package remotes. December 21, 2017

Package remotes. December 21, 2017 Package remotes December 21, 2017 Title R Package Installation from Remote Repositories, Including 'GitHub' Version 1.1.1 Download and install R packages stored in 'GitHub', 'BitBucket', or plain 'subversion'

More information

Package pdfsearch. July 10, 2018

Package pdfsearch. July 10, 2018 Type Package Version 0.2.3 License MIT + file LICENSE Title Search Tools for PDF Files Package pdfsearch July 10, 2018 Includes functions for keyword search of pdf files. There is also a wrapper that includes

More information

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Package gggenes November 7, 2018 Provides a 'ggplot2' geom and helper functions for drawing gene arrow maps. Depends R (>= 3.3.0) Imports grid (>=

More information

Collecting Data from the Programmable Web

Collecting Data from the Programmable Web Introduction to Web Mining for Social Scientists Lecture 7: Collecting Data from the Programmable Web II Prof. Dr. Ulrich Matter (University of St. Gallen) 14/11/2018 1 Collecting Data from the Programmable

More information

Package LaF. November 20, 2017

Package LaF. November 20, 2017 Type Package Title Fast Access to Large ASCII Files Version 0.8.0 Date 2017-11-16 Author Jan van der Laan Package LaF November 20, 2017 Maintainer Jan van der Laan Methods

More information

Package zebu. R topics documented: October 24, 2017

Package zebu. R topics documented: October 24, 2017 Type Package Title Local Association Measures Version 0.1.2 Date 2017-10-21 Author Olivier M. F. Martin [aut, cre], Michel Ducher [aut] Package zebu October 24, 2017 Maintainer Olivier M. F. Martin

More information

Package radix. September 17, 2018

Package radix. September 17, 2018 Type Package Package radix September 17, 2018 Title 'R Markdown' Format for Scientific and Technical Writing Version 0.5 Scientific and technical article format for the web. 'Radix' articles feature attractive,

More information

Package lumberjack. R topics documented: July 20, 2018

Package lumberjack. R topics documented: July 20, 2018 Package lumberjack July 20, 2018 Maintainer Mark van der Loo License GPL-3 Title Track Changes in Data LazyData no Type Package LazyLoad yes A function composition ('pipe') operator

More information

Package lazyeval. October 29, 2017

Package lazyeval. October 29, 2017 Version 0.2.1 Title Lazy (Non-Standard) Evaluation Package lazyeval October 29, 2017 An alternative approach to non-standard evaluation using formulas. Provides a full implementation of LISP style 'quasiquotation',

More information

Package slickr. March 6, 2018

Package slickr. March 6, 2018 Version 0.2.4 Date 2018-01-17 Package slickr March 6, 2018 Title Create Interactive Carousels with the JavaScript 'Slick' Library Create and customize interactive carousels using the 'Slick' JavaScript

More information

Package fastqcr. April 11, 2017

Package fastqcr. April 11, 2017 Type Package Title Quality Control of Sequencing Data Version 0.1.0 Date 2017-04-12 Package fastqcr April 11, 2017 'FASTQC' is the most widely used tool for evaluating the quality of high throughput sequencing

More information

Package sfc. August 29, 2016

Package sfc. August 29, 2016 Type Package Title Substance Flow Computation Version 0.1.0 Package sfc August 29, 2016 Description Provides a function sfc() to compute the substance flow with the input files --- ``data'' and ``model''.

More information