All Projects → ropenscilabs → Tl

ropenscilabs / Tl

Licence: other
tldr for R!

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Tl

Notary
🔏📦 Signing & verification of R packages
Stars: ✭ 48 (-7.69%)
Mutual labels:  r-package, rstats
Originr
Species origin data from the web in R
Stars: ✭ 13 (-75%)
Mutual labels:  r-package, rstats
Spenv
Combine environmental and spatial data
Stars: ✭ 8 (-84.62%)
Mutual labels:  r-package, rstats
Hexagon
◀️⏹▶️ R package for creating hexagon shaped xy data frames.
Stars: ✭ 40 (-23.08%)
Mutual labels:  r-package, rstats
Getlandsat
get landsat 8 images and metadata
Stars: ✭ 47 (-9.62%)
Mutual labels:  r-package, rstats
Tidymv
Tidy Model Visualisation for Generalised Additive Models
Stars: ✭ 25 (-51.92%)
Mutual labels:  r-package, rstats
Ieeer
Search IEEE publications in R
Stars: ✭ 12 (-76.92%)
Mutual labels:  r-package, rstats
Chr
🔤 Lightweight R package for manipulating [string] characters
Stars: ✭ 18 (-65.38%)
Mutual labels:  r-package, rstats
Graphql
Bindings to libgraphqlparser for R
Stars: ✭ 31 (-40.38%)
Mutual labels:  r-package, rstats
Sofa
easy R interface to CouchDB
Stars: ✭ 30 (-42.31%)
Mutual labels:  r-package, rstats
Rdhs
API Client and Data Munging for the Demographic and Health Survey Data
Stars: ✭ 22 (-57.69%)
Mutual labels:  r-package, rstats
Cricketdata
International cricket data for men and women, Tests, ODIs and T20s
Stars: ✭ 35 (-32.69%)
Mutual labels:  r-package, rstats
Restez
😴 📂 Create and Query a Local Copy of GenBank in R
Stars: ✭ 22 (-57.69%)
Mutual labels:  r-package, rstats
Rnaturalearthdata
to hold data used by rnaturalearth
Stars: ✭ 8 (-84.62%)
Mutual labels:  r-package, rstats
Patentsview
An R client to the PatentsView API
Stars: ✭ 18 (-65.38%)
Mutual labels:  r-package, rstats
Rtimicropem
😷 R Package for the Analysis of RTI MicroPEM Output Files 😷
Stars: ✭ 9 (-82.69%)
Mutual labels:  r-package, rstats
Icpsrdata
Reproducible data downloads from the ICPSR data archive
Stars: ✭ 7 (-86.54%)
Mutual labels:  r-package, rstats
Skimr
A frictionless, pipeable approach to dealing with summary statistics
Stars: ✭ 889 (+1609.62%)
Mutual labels:  r-package, rstats
Wellknown
WKT <-> GeoJSON
Stars: ✭ 15 (-71.15%)
Mutual labels:  r-package, rstats
Cld2
R Wrapper for Google's Compact Language Detector 2
Stars: ✭ 34 (-34.62%)
Mutual labels:  r-package, rstats

tl

Travis build status Codecov test coverage

The goal of tl is to provide an R equivalent to the tldr command line tool, a community-contributed set of quick reference guides for R functions.

"Perfection is achieved not when there is nothing more to add, but when there is nothing left to take away" - Antoine de Saint-Exupéry

Briefly forgotten how a function works? Don't want to scroll through a long help file to find the example usage? You need tl;dr!

Installation

You can install the current version of tl from github with:

devtools::install_github("ropenscilabs/tl")

Examples

Here are some basic examples of how to use tl:

Use the dr function to find a help page

tl::dr(lm)
fits a linear model

- fits a linear model of y dependent on x1 and x2
  m1 <- lm(y ~ x1 + x2)

- fits on data in data frame df
  m1 <- lm(y ~ x1 + x2, data = df)

- fits model of y on categorical variable xc
  m1 <- lm(y ~ as.factor(xc), data = df)

- print model
  summary(m1)
tl::dr(tidyr::gather)
tidyr::gather

converts data from wide to long

- collapse columns x1 to x5 into 5 rows
  gather(data, key = "key", value = "value", x1:x5)

- collapse all columns
  gather(data, key = "key", value = "value")

Page you are looking for does not exist? Use the create_page function to make one! Please follow the instructions to keep it brief.

tl::create_page(base::system.file)

Want to submit your new page to the tl package? Use the submit_page function to get instructions on how to add your help page to tl.

tl::submit_page(base::system.file)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].