Package remotes. December 21, 2017

Size: px
Start display at page:

Download "Package remotes. December 21, 2017"

Transcription

1 Package remotes December 21, 2017 Title R Package Installation from Remote Repositories, Including 'GitHub' Version Download and install R packages stored in 'GitHub', 'BitBucket', or plain 'subversion' or 'git' repositories. This package is a lightweight replacement of the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'. License GPL (>= 2) URL BugReports Imports methods, utils Suggests curl, git2r, mockery, pingr, testthat, withr Depends R (>= 3.0.0) RoxygenNote SystemRequirements Subversion for install_svn, git for install_git Encoding UTF-8 NeedsCompilation no Author Gábor Csárdi [aut, cre], Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], RStudio [cph], Martin Morgan [aut], Dan Tenenbaum [aut], Mango Solutions [cph] Maintainer Gábor Csárdi <csardi.gabor@gmail.com> Repository CRAN Date/Publication :50:46 UTC 1

2 2 download_version R topics documented: bioc_install_repos download_version github_pull install_bitbucket install_deps install_git install_github install_local install_svn install_url install_version package_deps parse-git-repo update_packages Index 14 bioc_install_repos Deduce the URLs of the BioConductor repositories Value Deduce the URLs of the BioConductor repositories bioc_install_repos() A named character vector of the URLs of the BioConductor repositories, appropriate for the current R version. download_version Download a specified version of a CRAN package It downloads the package to a temporary file, and returns the name of the file. download_version(package, version = NULL, repos = getoption("repos"), type = getoption("pkgtype"),...)

3 github_pull 3 package version repos type package name If the specified version is NULL or the same as the most recent version of the package, this function simply calls install.packages. Otherwise, it looks at the list of archived source tarballs and tries to install an older version instead. character vector, the base URL(s) of the repositories to use, e.g., the URL of a CRAN mirror such as " For more details on supported URL schemes see url. Can be NULL to install from local files, directories or URLs: this will be inferred by extension from pkgs if of length one. character, indicating the type of package to download and install. Will be "source" except on Windows and some macos builds: see the section on Binary packages for those.... Other arguments passed on to install.packages. Value Name of the downloaded file. github_pull GitHub references Use as ref parameter to install_github. Allows installing a specific pull request or the latest release. github_pull(pull) github_release() pull The pull request to install See Also install_github

4 4 install_bitbucket install_bitbucket Install a package directly from bitbucket This function is vectorised so you can install multiple packages in a single command. install_bitbucket(repo, ref = "master", subdir = NULL, auth_user = NULL, password = NULL,...) repo ref subdir auth_user password Repository address in the format username/repo[/subdir][@ref #pull]. Alternatively, you can specify subdir and/or ref using the respective parameters (see below); if both is specified, the values in repo take precedence. Desired git reference; could be a commit, tag, or branch name. Defaults to master. subdirectory within repo that contains the R package. your account username if you re attempting to install a package hosted in a private repository (and your username is different to username) your password... Other arguments passed on to install.packages. See Also Bitbucket API docs: html install_bitbucket("sulab/mygene.r@default") install_bitbucket("dannavarro/lsr-package")

5 install_deps 5 install_deps Install package dependencies if needed. Install package dependencies if needed. install_deps(pkgdir = ".", dependencies = NA, threads = getoption("ncpus", 1), repos = getoption("repos"), type = getoption("pkgtype"),..., upgrade = TRUE, quiet = FALSE) pkgdir dependencies threads repos type path to a package directory, or to a package tarball. Which dependencies do you want to check? Can be a character vector (selecting from "Depends", "Imports", "LinkingTo", "Suggests", or "Enhances"), or a logical vector. TRUE is shorthand for "Depends", "Imports", "LinkingTo" and "Suggests". NA is shorthand for "Depends", "Imports" and "LinkingTo" and is the default. FALSE is shorthand for no dependencies (i.e. just check this package, not its dependencies). Number of threads to start, passed to install.packages as Ncpus. A character vector giving repositories to use. Type of package to update. If "both", will switch automatically to "binary" to avoid interactive prompts during package installation.... additional arguments passed to install.packages. upgrade quiet If TRUE, also upgrade any of out date dependencies. If TRUE, suppress output. install_deps(".")

6 6 install_github install_git Install a package from a git repository It is vectorised so you can install multiple packages with a single command. You do not need to have the git2r package, or an external git client installed. install_git(url, subdir = NULL, branch = NULL, git = c("auto", "git2r", "external"),...) url subdir branch git Location of package. The url should point to a public or private repository. A sub-directory within a git repository that may contain the package we are interested in installing. Name of branch or tag to use, if not master. Whether to use the git2r package, or an external git client via system. Default is git2r if it is installed, otherwise an external git installation.... passed on to install.packages install_git("git://github.com/hadley/stringr.git") install_git("git://github.com/hadley/stringr.git", branch = "stringr-0.2") install_github Attempts to install a package directly from GitHub. This function is vectorised on repo so you can install multiple packages in a single command. install_github(repo, username = NULL, ref = "master", subdir = NULL, auth_token = github_pat(), host = "api.github.com",...)

7 install_github 7 repo username ref subdir auth_token host Repository address in the format username/repo[/subdir][@ref #pull]. Alternatively, you can specify subdir and/or ref using the respective parameters (see below); if both is specified, the values in repo take precedence. User name. Deprecated: please include username in the repo Desired git reference. Could be a commit, tag, or branch name, or a call to github_pull. Defaults to "master". subdirectory within repo that contains the R package. To install from a private repo, generate a personal access token (PAT) in https: //github.com/settings/applications and supply to this argument. This is safer than using a password because you can easily delete a PAT without affecting any others. Defaults to the GITHUB_PAT environment variable. GitHub API host to use. Override with your GitHub enterprise hostname, for example, "github.hostname.com/api/v3".... Other arguments passed on to install.packages. Details Attempting to install from a source repository that uses submodules raises a warning. Because the zipped sources provided by GitHub do not include submodules, this may lead to unexpected behaviour or compilation failure in source packages. In this case, cloning the repository manually may yield better results. See Also github_pull install_github("klutometis/roxygen") install_github("wch/ggplot2") install_github(c("rstudio/httpuv", "rstudio/shiny")) install_github(c("hadley/httr@v0.4", "klutometis/roxygen#142", "mfrasca/r-logging/pkg")) # To install from a private repo, use auth_token with a token # from You only need the # repo scope. Best practice is to save your PAT in env var called # GITHUB_PAT. install_github("hadley/private", auth_token = "abc")

8 8 install_svn install_local Install a package from a local file This function is vectorised so you can install multiple packages in a single command. install_local(path, subdir = NULL,...) path subdir path to local directory, or compressed file (tar, zip, tar.gz tar.bz2, tgz2 or tbz) subdirectory within url bundle that contains the R package.... Other arguments passed on to install.packages. dir <- tempfile() dir.create(dir) pkg <- download.packages("testthat", dir, type = "source") install_local(pkg[, 2]) install_svn Install a package from a SVN repository This function requires svn to be installed on your system in order to be used. install_svn(url, subdir = NULL, args = character(0),..., revision = NULL) url subdir args Location of package. The url should point to a public or private repository. A sub-directory withing a svn repository that contains the package we are interested in installing. A character vector providing extra options to pass on to svn.... Other arguments passed on to install.packages. revision svn revision, if omitted updates to latest

9 install_url 9 Details It is vectorised so you can install multiple packages with a single command. install_svn("svn://github.com/hadley/stringr/trunk") install_svn("svn://github.com/hadley/httr/branches/oauth") install_url Install a package from a url This function is vectorised so you can install multiple packages in a single command. install_url(url, subdir = NULL,...) url subdir location of package on internet. The url should point to a zip file, a tar file or a bzipped/gzipped tar file. subdirectory within url bundle that contains the R package.... Other arguments passed on to install.packages. install_url("

10 10 package_deps install_version Install specified version of a CRAN package. If you are installing an package that contains compiled code, you will need to have an R development environment installed. You can check if you do by running devtools::has_devel (you need the devtools package for this). install_version(package, version = NULL, repos = getoption("repos"), type = getoption("pkgtype"),...) package version repos type package name If the specified version is NULL or the same as the most recent version of the package, this function simply calls install.packages. Otherwise, it looks at the list of archived source tarballs and tries to install an older version instead. character vector, the base URL(s) of the repositories to use, e.g., the URL of a CRAN mirror such as " For more details on supported URL schemes see url. Can be NULL to install from local files, directories or URLs: this will be inferred by extension from pkgs if of length one. character, indicating the type of package to download and install. Will be "source" except on Windows and some macos builds: see the section on Binary packages for those.... Other arguments passed on to install.packages. Author(s) Jeremy Stephens package_deps Find all dependencies of a CRAN or dev package. Find all the dependencies of a package and determine whether they are ahead or behind CRAN. A print() method identifies mismatches (if any) between local and CRAN versions of each dependent package; an update() method installs outdated or missing packages from CRAN. local_package_deps extracts dependencies from a local DESCRIPTION file. dev_package_deps lists the status of the dependencies of a local package.

11 package_deps 11 package_deps(packages, dependencies = NA, repos = getoption("repos"), type = getoption("pkgtype")) local_package_deps(pkgdir = ".", dependencies = NA) dev_package_deps(pkgdir = ".", dependencies = NA, repos = getoption("repos"), type = getoption("pkgtype")) ## S3 method for class 'package_deps' update(object,..., quiet = FALSE, upgrade = TRUE) Value packages dependencies repos type pkgdir object A character vector of package names. Which dependencies do you want to check? Can be a character vector (selecting from "Depends", "Imports", "LinkingTo", "Suggests", or "Enhances"), or a logical vector. TRUE is shorthand for "Depends", "Imports", "LinkingTo" and "Suggests". NA is shorthand for "Depends", "Imports" and "LinkingTo" and is the default. FALSE is shorthand for no dependencies (i.e. just check this package, not its dependencies). A character vector giving repositories to use. Type of package to update. If "both", will switch automatically to "binary" to avoid interactive prompts during package installation. path to a package directory, or to a package tarball. A package_deps object.... Additional arguments passed to install_packages. quiet upgrade A data.frame with columns: If TRUE, suppress output. If TRUE, also upgrade any of out date dependencies. package installed available diff The dependent package s name, The currently installed version, The version available on CRAN, An integer denoting whether the locally installed version of the package is newer (1), the same (0) or older (-1) t package_deps("devtools") # Use update to update any out-of-date dependencies

12 12 parse-git-repo update(package_deps("devtools")) parse-git-repo Parse a remote git repo specification A remote repo can be specified in two ways: as a URL parse_github_url() handles HTTPS and SSH remote URLs and various GitHub browser URLs via a shorthand parse_repo_spec() handles this concise parse_repo_spec(repo) parse_github_repo_spec(repo) parse_github_url(repo) repo Character scalar, the repo specification. Value List with members: username, repo, subdir ref, pull, release, some which will be empty. parse_repo_spec("metacran/crandb") parse_repo_spec("jimhester/covr#47") ## pull request parse_repo_spec("jeroen/curl@v0.9.3") ## specific tag parse_repo_spec("tidyverse/dplyr@*release") ## shorthand for latest release parse_repo_spec("r-lib/remotes@550a3c7d3f9e1493a2ba") ## commit SHA parse_github_url(" parse_github_url("git@github.com:metacran/crandb.git") parse_github_url(" parse_github_url(" parse_github_url("git@github.example.com:user/repo.git") parse_github_url(" parse_github_url(" parse_github_url(" parse_github_url(" parse_github_url("

13 update_packages 13 update_packages Update packages that are missing or out-of-date. Works similarly to install.packages but doesn t install packages that are already installed, and also upgrades out dated dependencies. update_packages(packages, dependencies = NA, repos = getoption("repos"), type = getoption("pkgtype")) packages dependencies repos type Character vector of packages to update. Which dependencies do you want to check? Can be a character vector (selecting from "Depends", "Imports", "LinkingTo", "Suggests", or "Enhances"), or a logical vector. TRUE is shorthand for "Depends", "Imports", "LinkingTo" and "Suggests". NA is shorthand for "Depends", "Imports" and "LinkingTo" and is the default. FALSE is shorthand for no dependencies (i.e. just check this package, not its dependencies). A character vector giving repositories to use. Type of package to update. If "both", will switch automatically to "binary" to avoid interactive prompts during package installation. See Also package_deps to see which packages are out of date/ missing. update_packages("ggplot2") update_packages(c("plyr", "ggplot2"))

14 Index bioc_install_repos, 2 dev_package_deps (package_deps), 10 download_version, 2 github_pull, 3, 7 github_release (github_pull), 3 install.packages, 3 10, 13 install_bitbucket, 4 install_deps, 5 install_git, 6 install_github, 3, 6 install_local, 8 install_svn, 8 install_url, 9 install_version, 10 local_package_deps (package_deps), 10 package_deps, 10, 13 parse-git-repo, 12 parse_github_repo_spec (parse-git-repo), 12 parse_github_url (parse-git-repo), 12 parse_repo_spec (parse-git-repo), 12 update.package_deps (package_deps), 10 update_packages, 13 url, 3, 10 14

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 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 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 devtools. November 9, 2017

Package devtools. November 9, 2017 Package devtools November 9, 2017 Title Tools to Make Developing R Packages Easier Version 1.13.4 Encoding UTF-8 Collection of package development tools. URL https://github.com/hadley/devtools BugReports

More information

Package BiocManager. November 13, 2018

Package BiocManager. November 13, 2018 Package BiocManager November 13, 2018 Title Access the Bioconductor Project Package Repository A convenient tool to install and update Bioconductor packages. Version 1.30.4 Depends R (>= 3.5.0) Imports

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 librarian. R topics documented:

Package librarian. R topics documented: Package librarian July 8, 2018 Title Install, Update, Load Packages from CRAN and 'GitHub' in One Step Version 1.3.0 Automatically install, update, and load 'CRAN' and 'GitHub' packages in a single function

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 available. November 17, 2017

Package available. November 17, 2017 Package available November 17, 2017 Title Check if the Title of a Package is Available, Appropriate and Interesting Version 1.0.0 Check if a given package is available to use. It checks the 's validity.

More information

Package pkgload. July 8, 2018

Package pkgload. July 8, 2018 Title Simulate Package Installation and Attach Version 1.0.0 Package pkgload July 8, 2018 Simulates the process of installing a package and then attaching it. This is a key part of the 'devtools' package

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 profvis. R topics documented:

Package profvis. R topics documented: Package profvis January 14, 2017 Title Interactive Visualizations for Profiling R Code Version 0.3.3 Interactive visualizations for profiling R code. Depends R (>= 3.0) Imports htmlwidgets (>= 0.3.2),

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 zip. R topics documented: March 11, Title Cross-Platform 'zip' Compression Version 2.0.1

Package zip. R topics documented: March 11, Title Cross-Platform 'zip' Compression Version 2.0.1 Title Cross-Platform 'zip' Compression Version 2.0.1 Package zip March 11, 2019 Author Gábor Csárdi, Kuba Podgórski, Rich Geldreich Maintainer Gábor Csárdi Cross-Platform 'zip'

More information

Package packrat. R topics documented: September 7, Type Package

Package packrat. R topics documented: September 7, Type Package Type Package Package packrat September 7, 2016 Title A Dependency Management System for Projects and their R Package Dependencies Version 0.4.8-1 Author Kevin Ushey, Jonathan McPherson, Joe Cheng, Aron

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 RPostgres. April 6, 2018

Package RPostgres. April 6, 2018 Title 'Rcpp' Interface to 'PostgreSQL' Version 1.1.0 Date 2018-04-04 Package RPostgres April 6, 2018 Fully 'DBI'-compliant 'Rcpp'-backed interface to 'PostgreSQL' , an open-source

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 BiocInstaller

Package BiocInstaller Package BiocInstaller April 7, 2018 Title Install/Update Bioconductor, CRAN, and github Packages This package is used to install and update Bioconductor, CRAN, and (some) github packages. Version 1.29.6

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

The switchr Package. Gabriel Becker. February 22, 2018

The switchr Package. Gabriel Becker. February 22, 2018 The switchr Package Gabriel Becker February 22, 2018 Contents 1 Managing and populating package libraries 2 1.1 Creating and switching between package libraries......................... 2 1.2 Removing

More information

Package BioInstaller

Package BioInstaller Title Lightweight Biology Software Installer Version 0.3.3 Package BioInstaller January 24, 2018 Can be used to install and download massive bioinformatics analysis softwares and databases, such as NGS

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 filelock. R topics documented: February 7, 2018

Package filelock. R topics documented: February 7, 2018 Package filelock February 7, 2018 Title Portable File Locking Version 1.0.1 Author Gábor Csárdi Maintainer Gábor Csárdi Description Place an exclusive or shared lock on a file.

More information

Package jstree. October 24, 2017

Package jstree. October 24, 2017 Package jstree October 24, 2017 Title Create Interactive Trees with the 'jquery' 'jstree' Plugin Version 1.0.1 Date 2017-10-23 Maintainer Jonathan Sidi Create and customize interactive

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 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 exifr. October 15, 2017

Package exifr. October 15, 2017 Type Package Title EXIF Image Data in R Version 0.2.1 Date 2017-10-14 Package exifr October 15, 2017 Maintainer Dewey Dunnington Reads EXIF data using ExifTool

More information

Package rhub. November 1, 2017

Package rhub. November 1, 2017 Title Connect to 'R-hub' Version 1.0.2 Author Gábor Csárdi Package rhub November 1, 2017 Maintainer Gábor Csárdi Run 'R CMD check' on any of the 'R-hub' architectures, from the

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 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 shinytest. May 7, 2018

Package shinytest. May 7, 2018 Title Test Shiny Apps Version 1.3.0 Package shinytest May 7, 2018 For automated testing of Shiny applications, using a headless browser, driven through 'WebDriver'. License MIT + file LICENSE LazyData

More information

Package RPostgres. December 6, 2017

Package RPostgres. December 6, 2017 Encoding UTF-8 Version 1.0-3 Date 2017-12-06 Title 'Rcpp' Interface to 'PostgreSQL' Package RPostgres December 6, 2017 Fully 'DBI'-compliant 'Rcpp'-backed interface to 'PostgreSQL' ,

More information

Package cli. November 5, 2017

Package cli. November 5, 2017 Package cli November 5, 2017 Title Helpers for Developing Command Line Interfaces Version 1.0.0 A suite of tools designed to build attractive command line interfaces ('CLIs'). Includes tools for drawing

More information

Package callr. January 30, 2018

Package callr. January 30, 2018 Title Call R from R Version 2.0.1 Author Gábor Csárdi, Winston Chang Package callr January 30, 2018 Maintainer Gábor Csárdi It is sometimes useful to perform a computation in a

More information

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files Version 0.1.3 Date 2018-08-12 Title Read Large Text Files Package bigreadr August 13, 2018 Read large text s by splitting them in smaller s. License GPL-3 Encoding UTF-8 LazyData true ByteCompile true

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 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 tensorflow. January 17, 2018

Package tensorflow. January 17, 2018 Type Package Title R Interface to 'TensorFlow' Version 1.5 Package tensorflow January 17, 2018 Interface to 'TensorFlow' , an open source software library for numerical computation

More information

Package phuse. January 2, 2019

Package phuse. January 2, 2019 Type Package Package phuse January 2, 2019 Title Web Application Framework for 'PhUSE' Scripts Version 0.1.7 Author [aut, cre] Maintainer Make it easy to review, download and execute

More information

Package ssh. June 4, 2018

Package ssh. June 4, 2018 Type Package Title Secure Shell (SSH) Client for R Version 0.2 Author Jeroen Ooms Package ssh June 4, 2018 Maintainer Jeroen Ooms Connect to a remote server over SSH to transfer files

More information

Package repec. August 31, 2018

Package repec. August 31, 2018 Type Package Title Access RePEc Data Through API Version 0.1.0 Package repec August 31, 2018 Utilities for accessing RePEc (Research Papers in Economics) through a RESTful API. You can request a and get

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 sankey. R topics documented: October 22, 2017

Package sankey. R topics documented: October 22, 2017 Package sankey October 22, 2017 Title Illustrate the Flow of Information or Material Version 1.0.2 Author Gábor Csárdi, January Weiner Maintainer Gábor Csárdi Description Plots

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 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 comparedf. February 11, 2019

Package comparedf. February 11, 2019 Type Package Package comparedf February 11, 2019 Title Do a Git Style Diff of the Rows Between Two Dataframes with Similar Structure Version 1.7.1 Date 2019-02-11 Compares two dataframes which have the

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 fst. December 18, 2017

Package fst. December 18, 2017 Type Package Package fst December 18, 2017 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows

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 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 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 farver. November 20, 2018

Package farver. November 20, 2018 Type Package Package farver November 20, 2018 Title Vectorised Colour Conversion and Comparison Version 1.1.0 Date 2018-11-20 Maintainer Thomas Lin Pedersen The encoding of colour

More information

R topics documented: 2 checkpoint-package

R topics documented: 2 checkpoint-package Package checkpoint December 19, 2017 Title Install Packages from Snapshots on the Checkpoint Server for Reproducibility The goal of checkpoint is to solve the problem of package reproducibility in R. Specifically,

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 kirby21.base

Package kirby21.base Type Package Package kirby21.base October 11, 2017 Title Example Data from the Multi-Modal MRI 'Reproducibility' Resource Version 1.6.0 Date 2017-10-10 Author John Muschelli Maintainer

More information

Package snakecase. R topics documented: March 25, Version Date Title Convert Strings into any Case

Package snakecase. R topics documented: March 25, Version Date Title Convert Strings into any Case Version 0.9.1 Date 2018-03-24 Title Convert Strings into any Case Package snakecase March 25, 2018 A consistent, flexible and easy to use tool to parse and convert s into cases like snake or camel among

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 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 clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

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 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 googlecomputeenginer

Package googlecomputeenginer Type Package Version 0.2.0 Package googlecomputeenginer Title R Interface with Google Compute Engine September 16, 2017 Interact with the 'Google Compute Engine' API in R. Lets you create, start and stop

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 blogdown. April 19, 2018

Package blogdown. April 19, 2018 Type Package Package blogdown April 19, 2018 Title Create Blogs and Websites with R Markdown Version 0.6 Write blog posts and web pages in R Markdown. This package supports the static site generator 'Hugo'

More information

Package vdiffr. April 27, 2018

Package vdiffr. April 27, 2018 Package vdiffr April 27, 2018 Title Visual Regression Testing and Graphical Diffing Version 0.2.3 An extension to the 'testthat' package that makes it easy to add graphical unit tests. It provides a Shiny

More information

Package JGR. September 24, 2017

Package JGR. September 24, 2017 Version 1.8-4 Title Java GUI for R Date 2017-09-24 Package JGR September 24, 2017 Author Markus Helbig , Simon Urbanek, Ian Fellows Maintainer Markus Helbig

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 archivist. November 26, 2017

Package archivist. November 26, 2017 Version 2.2 Type Package Package archivist November 26, 2017 Title Tools for Storing, Restoring and Searching for R Objects Description Data exploration and modelling is a process in which a lot of data

More information

Package rbraries. April 18, 2018

Package rbraries. April 18, 2018 Title Interface to the 'Libraries.io' API Package rbraries April 18, 2018 Interface to the 'Libraries.io' API (). 'Libraries.io' indexes data from 36 different package managers

More information

Index. Alias syntax, 31 Author and commit attributes, 334

Index. Alias syntax, 31 Author and commit attributes, 334 Index A Alias syntax, 31 Author and commit attributes, 334 B Bare repository, 19 Binary conflict creating conflicting changes, 218 during merging, 219 during rebasing, 221 Branches backup, 140 clone-with-branches

More information

Package assertive.reflection

Package assertive.reflection Type Package Package assertive.reflection Title Assertions for Checking the State of R Version 0.0-4 Date 2016-12-30 Author Richard Cotton [aut, cre] February 2, 20 Maintainer Richard Cotton

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 styler. December 11, Title Non-Invasive Pretty Printing of R Code Version 1.0.0

Package styler. December 11, Title Non-Invasive Pretty Printing of R Code Version 1.0.0 Title Non-Invasive Pretty Printing of R Code Version 1.0.0 Package styler December 11, 2017 Pretty-prints R code without changing the user's formatting intent. Imports backports, cli, enc, magrittr, purrr,

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 ctv. October 8, 2017

Package ctv. October 8, 2017 Package ctv October 8, 2017 Version 0.8-3 Date 2017-10-07 Title CRAN Task Views Description Infrastructure for task views to CRANstyle repositories: Querying task views and installing the associated packages

More information

Package liftr. R topics documented: May 14, Type Package

Package liftr. R topics documented: May 14, Type Package Type Package Package liftr May 14, 2018 Title Containerize R Markdown Documents for Continuous Reproducibility Version 0.9 Maintainer Nan Xiao Persistent reproducible reporting by containerization

More information

Package rlas. June 11, 2018

Package rlas. June 11, 2018 Type Package Package rlas June 11, 2018 Title Read and Write 'las' and 'laz' Binary File Formats Used for Remote Sensing Data Version 1.2.4 Date 2018-05-10 Read and write 'las' and 'laz' binary file formats.

More information

Package fst. June 7, 2018

Package fst. June 7, 2018 Type Package Package fst June 7, 2018 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows for random

More information

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0 Type Package Title Power Analysis for AB Testing Version 0.1.0 Package pwrab June 6, 2017 Maintainer William Cha Power analysis for AB testing. The calculations are based

More information

Package raker. October 10, 2017

Package raker. October 10, 2017 Title Easy Spatial Microsimulation (Raking) in R Version 0.2.1 Date 2017-10-10 Package raker October 10, 2017 Functions for performing spatial microsimulation ('raking') in R. Depends R (>= 3.4.0) License

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

Git for Subversion users

Git for Subversion users Git for Subversion users Zend webinar, 23-02-2012 Stefan who? Stefan who? Freelancer: Ingewikkeld Stefan who? Freelancer: Ingewikkeld Symfony Community Manager Stefan who? Freelancer: Ingewikkeld Symfony

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 aws.transcribe

Package aws.transcribe Type Package Title Client for 'AWS Transcribe' Version 0.1.2 Date 2018-04-09 Package aws.transcribe April 9, 2018 Client for 'AWS Transcribe' , a cloud

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 tidyimpute. March 5, 2018

Package tidyimpute. March 5, 2018 Title Imputation the Tidyverse Way Version 0.1.0 Date 2018-02-01 Package tidyimpute March 5, 2018 URL https://github.com/decisionpatterns/tidyimpute Functions and methods for imputing missing values (NA)

More information

Package mdftracks. February 6, 2017

Package mdftracks. February 6, 2017 Type Package Title Read and Write 'MTrackJ Data Files' Version 0.2.0 Package mdftracks February 6, 2017 'MTrackJ' is an 'ImageJ' plugin for motion tracking and analysis (see ).

More information

Package cloudml. June 12, 2018

Package cloudml. June 12, 2018 Package cloudml June 12, 2018 Title Interface to the Google Cloud Machine Learning Platform Version 0.5.1 Interface to the Google Cloud Machine Learning Platform , which

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 memoise. April 21, 2017

Package memoise. April 21, 2017 Encoding UTF-8 Title Memoisation of Functions Version 1.1.0 Package memoise April 21, 2017 Cache the results of a function so that when you call it again with the same arguments it returns the pre-computed

More information

Package teachingapps

Package teachingapps Type Package Package teachingapps June 10, 2018 Title Apps for Teaching Statistics, R Programming, and Shiny App Development Version 1.0.4 Date 2018-06-08 Maintainer Jason Freels

More information

Version control system (VCS)

Version control system (VCS) Version control system (VCS) Remember that you are required to keep a process-log-book of the whole development solutions with just one commit or with incomplete process-log-book (where it is not possible

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 Management in Racket

Package Management in Racket Package Management in Racket Version 7.1.0.10 Jay McCarthy ăjay@racket-lang.orgą December 27, 2018 The Racket package manager lets you install new libraries and collections, and the Racket package catalog

More information

Package autoshiny. June 25, 2018

Package autoshiny. June 25, 2018 Package autoshiny June 25, 2018 Title Automatic Transformation of an 'R' Function into a 'shiny' App Version 0.0.2 Description Static code compilation of a 'shiny' app given an R function (into 'ui.r'

More information

Package BiocStyle. January 26, 2018

Package BiocStyle. January 26, 2018 Package BiocStyle January 26, 2018 Title Standard styles for vignettes and other Bioconductor documents Provides standard formatting styles for Bioconductor PDF and HTML documents. Package vignettes illustrate

More information

Package promote. November 15, 2017

Package promote. November 15, 2017 Type Package Title Client for the 'Alteryx Promote' API Version 1.0.0 Date 2017-11-14 Package promote November 15, 2017 Author Paul E. Promote Maintainer Paul E. Promote

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

Version Control. Version Control

Version Control. Version Control Version Control Prepared for CS 342 - Software Design by John Bell Based on slides prepared by Jason Leigh for CS 340 University of Illinois at Chicago Version Control Incredibly important when working

More information