markdown !R_packages_list.md
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown !R_packages_list.md相关的知识,希望对你有一定的参考价值。
### Datasets
- [UCI Machine Learning Repository](http://archive.ics.uci.edu/ml/datasets.html).
- [Kaggle]() -
### Icons
- [font awesome](http://fontawesome.io/icons/)
- [Glyphicons](http://getbootstrap.com/components/#glyphicons)
- [HSAUR](http://cran.r-project.org/web/packages/HSAUR/) - Functions, datasets, analyses and examples from the book *A Handbook of Statistical Analyses Using R*
- [MASS](http://cran.r-project.org/web/packages/MASS) - Functions and datasets to support the book [Modern Applied Statistics with S](http://www.stats.ox.ac.uk/pub/MASS4/)
- [AppliedPredictiveModeling](https://cran.r-project.org/web/packages/AppliedPredictiveModeling/) - Functions and datasets to support the homonymous book
- [swirl]()
Many *R* packages contain their own dataset(s) to exercise on, like the famous *diamonds* in the *ggplot2* package.
- *datasets*: comes with base *R*, which means that any dataset can be loaded using `data(dataset_name)`. The most common dataset included is for sure [iris](http://archive.ics.uci.edu/ml/datasets/Iris).
- *nycflights13::flights*: all flights that departed from NYC in 2013: 336,776 flights with 16 variables. It also includes a number of other useful datasets: weather, planes, airports, airlines.
- *babynames::babynames*: US baby name data for each year from 1880 to 2013: 1,792,091 rows, 5 columns (year, sex, name, n, prop; n >= 5).
- *fueleconomy::vehicles*: Fuel economy data for all cars sold in the US from 1984 to 2015: 33,442 rows, 12 variables
- *nasaweather::atmos*: monthly atmospheric measurements Jan 1995 to Dec2000 on 24 x 24 grid over Central America: 41,472 observations, 11 variables
- *hflights*: all flights departing from Houston airports IAH and HOU in 2011 ([GitHub](https://github.com/hadley/hflights))
- neiss - sample of all accidents reported to US emergency rooms 2009-2014
- yrbss - Youth Risk Behaviour Surveillance System data from 1991 to 2013
- USAboundaries - Historical and Contemporary Boundaries of the United States of America
- rworldmap - country border data
- usdanutrients - USDA nutrient database
- mexico-mortality - deaths in Mexico
- data-movies and ggplotmovies - data from the Internet Movie Database (IMDB)
- pop-flows - Population flows around the USA in 2008
- data-housing-crisis - Clean data related to the 2008 US housing crisis
- gun-sales - Statistical analysis of monthly background checks of gun purchases from NY times
- stationaRy - hourly meteorological data from one of thousands of global stations
- gapminder - Excerpt from the Gapminder data
- [profvis](https://github.com/rstudio/profvis) -
- [googleAuthR](https://github.com/MarkEdmondson1234/googleAuthR) - Shiny compatible R interface to select Google API Client Libraries. Easy authentication with OAuth2.
- [webshot](http://github.com/wch/webshot) - It makes it easy to take screenshots of web pages from R. It requires an installation of [PhantomJS](http://phantomjs.org/), that could be installed from inside R using `webshot::install_phantomjs()`
- [plumber](http://github.com/trestletech/plumber) - Allows to create a REST API
- [gmailR](http://github.com/jimhester/gmailr) - Provides a way to send gmail message from R with attachments.
- [hexSticker](https://github.com/GuangchuangYu/hexSticker) - Provides a function to create [Hexagon stickers](http://hexb.in/sticker.html)
- [slackr](https://github.com/hrbrmstr/slackr) - R interface to the [Slack](slack.com) messaging platform
- [diffobj](https://github.com/brodieG/diffobj) - Generate a colorized diff of two R objects for an intuitive visualization of their differences
- [editr](https://github.com/swarm-lab/editR) - Basic editor for *Rmarkdown* documents with instant previewing. Alternative way to [R Notebooks](http://rmarkdown.rstudio.com/r_notebooks.html)
- [pacman](https://github.com/trinker/pacman) - A package management tools for R
- [reinstallr](https://github.com/calligross/reinstallr) - Simple tool to identify and reinstall missing packages
- [countrycode](https://github.com/vincentarelbundock/countrycode) - Standardize country names, convert them into one of eleven coding schemes, convert between coding schemes, and assign region descriptors.
- [git2r](https://github.com/ropensci/git2r) - Provides tools for programmatic access to Git repositories, using the [libgit2](http://libgit2.github.com/) library.
- [rgithub](https://github.com/cscheid/rgithub) - R Bindings for the Github API.
- [gistr](https://github.com/ropensci/gistr) - R interface to GitHub's *gists*.
- [devtools](http://github.com/hadley/devtools/) - An essential suite of tools for turning code into an R package
- [testthat](http://) - An easy way to write unit tests for any code projects.
- [roxygen2](http://roxygen.org/#documentation) - A quick way to document any R packages. roxygen2 turns inline code comments into documentation pages and builds a package namespace.
- [lintr](https://github.com/jimhester/lintr) - Static code analysis for R
- [htmlwidgets](http://www.htmlwidgets.org/) - A fast way to build interactive (javascript based) displays and visualizations. See also the [gallery](http://gallery.htmlwidgets.org/)
- [log4r](http://github.com/johnmyleswhite/log4r) - A simple logging system for R, based on [log4j](logging.apache.org/log4j/)
- [installr](http://github.com/talgalili/installr/) - (Windows only) Allows to easily update the installed version of R from within R
- [reticulate](https://github.com/rstudio/reticulate) - R Interface to Python
- [pageviews](https://github.com/Ironholds/pageviews) - An API client library for Wikimedia pageview data
- [birdnik](https://github.com/Ironholds/birdnik) - R client for the [Wordnik](https://www.wordnik.com/) dictionary (require access tokens)
- [w3wr](https://bitbucket.org/richierocks/w3wr) - R client for the [what3words](https://map.what3words.com/) maps service (require access tokens)
- [alphavantager](https://github.com/business-science/alphavantager) - R client for [Alpha Vantage](https://www.alphavantage.co/), an API for retreiving real-time and historical financial data (require access tokens)
- [RCurl]() - Composition of general HTTP requests, functions to fetch URLs, to get and post web data
- [httr](http://github.com/r-lib/httr) - A set of useful tools for working with http connections, especially pulling data from APIs
- [rvest](https://github.com/hadley/rvest) Provides functionality for *web scraping*, extracting data from HTML pages, in a similar manner as Python's [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/). Works well with [Selectorgadget](http://cran.r-project.org/web/packages/rvest/vignettes/selectorgadget.html).
- [webreadr](https://github.com/Ironholds/webreadr) - A set of wrappers and functions for reading, munging and formatting data from access logs and other sources of web request data.
- [htmltools](https://github.com/rstudio/htmltools) - Tools for HTML generation and output
- [analogsea](http://github.com/sckott/analogsea) - R client for version 2 of the [Digital Ocean API](http://developers.digitalocean.com/v2/)
- [sparklyr](https://github.com/rstudio/sparklyr) - R interface for [Apache Spark](http://spark.apache.org/), data engine for large-scale data processing, that also provides a complete dplyr backend and access to Spark distributed machine learning library.
- [bigrquery](https://github.com/rstats-db/bigrquery) - R interface to [Google BigQuery](https://developers.google.com/bigquery/)
- [datadr](https://github.com/delta-rho/datadr) - Provides methods for dividing large and complex datasets into subsets, applying analytical methods to the subsets, and recombining the results.
- [RHIPE](https://github.com/saptarshiguha/RHIPE/) - Provides a way to use Hadoop from R. Installation of RHIPE requires a working Hadoop cluster and several prerequisites.
- [ddR](https://github.com/vertica/ddR) - Standard API for Distributed Data Structures in R
- [Rcpp](https://github.com/RcppCore/Rcpp) - Write R functions that call C++ code for lightning fast speed.
- [parallel]() **core** - Use parallel processing in R to speed up your code or to crunch large data sets.
- [foreach](http://cran.r-project.org/web/packages/foreach/) -
- [doMC](http://cran.r-project.org/web/packages/doMC/) - Multicore processing
- [multicore]() -
- [doSNOW ]() -
- [SOAR](http://cran.r-project.org/web/packages/SOAR/) - Memory management by delayed assignments
- [rbenchmark]() -
- [psych](https://cran.r-project.org/web/packages/psych/) - Procedures for Psychological, Psychometric, and Personality Research
[Bioconductor](https://www.bioconductor.org/) provides tools for the analysis and comprehension of high-throughput genomic data. The `biocLite()` command is the recommended way to install *Bioconductor* packages: *Bioconductor* has a repository and release schedule that differs from *R*. Run `source('http://bioconductor.org/biocLite.R')` to get the latest version of *Bioconductor*.
- [IRanges]() -
- [AnnotationDbi]() -
- [meta]() -
- [metafor](http://www.metafor-project.org/doku.php) -
- [metaSEM](http://courses.nus.edu.sg/course/psycwlm/Internet/metaSEM/) - Conducts meta-analyses by formulating meta-analytic models as Structural Equation Models.
- [rmeta]() -
- [epir]() -
- [forestplot]() -
- [esc](https://github.com/sjPlot/esc) - Implementation in R of the web-based [Practical Meta-Analysis Effect Size Calculator](http://www.campbellcollaboration.org/escalc/html/EffectSizeCalculator-Home.php) from David B. Wilson, author of the famous book *Practical Meta-analysis*.
- [googleAnalyticsR](https://github.com/MarkEdmondson1234/googleAnalyticsR) - A bridge to **Google Analytics**
- [rga](http://github.com/skardhamar/rga/) - One more interface to **Google Analytics**
- [twitteR]() -
- [quantmod](https://github.com/joshuaulrich/quantmod) - Tools for downloading financial data, plotting common charts, and doing technical analysis.
- [PerformanceAnalytics](https://github.com/braverock/PerformanceAnalytics) - Provides functionalities to assess performance and risk analysis of financial instruments or portfolios.
- [TTR](https://github.com/joshuaulrich/TTR) - Provides Technical analysis functionalities to construct technical trading rules.
- [tidyquant](https://github.com/business-science/tidyquant) - Financial package useful for importing, analyzing and visualizing data, as well as integrating aspects of other financial packages with *tidyverse* tools.
- [Quandl](https://github.com/quandl/quandl-r) - Get financial and economic datasets from hundreds of publishers directly into R. Free plan for open data, paid plans for all othet sources
- [fMultivar](http://cran.r-project.org/web/packages/fMultivar/fMultivar.pdf) - Analysis and Modeling of Multivariate Financial Return Distributions
- [BatchGetSymbols](https://cran.r-project.org/web/packages/BatchGetSymbols/) - Downloads and Organizes Financial Data for a large number of Tickers using Yahoo or Google Finance.
- [boot]() - bootstrap calculations
- [deSolve]() -
- [cvTools]() -
- [laeken]() -
- [rlecuyer]() -
- [Matrix](http://cran.r-project.org/web/packages/Matrix/) - Sparse and Dense Matrix Classes and Methods
- [svd](https://cran.r-project.org/web/packages/svd/) - Interface to Lanczos SVD and eigensolvers from R
- [irlba](http://illposed.net/irlba.pdf) - Provides a fast way to compute partial SVDs and principal component analyses of very large scale data
- [OpenMx](http://openmx.ssri.psu.edu/) - Matrix optimizer, ofetn used to fit general SEM (structural equation models)
- [bsplus](https://github.com/ijlyttle/bsplus) - Provide a framework to facilitate the use of [Bootstrap's JavaScript-markup API](http://getbootstrap.com/javascript/) inside *rmarkdown* HTML documents and *Shiny* apps
- [colourpicker](https://github.com/daattali/colourpicker) :+1: - Provides a colour picker tool for *Shiny* apps
- [midas](https://github.com/shapenaji/midas) - Convert HTML/XML native code into lists or shiny function(s) that would generate the equivalent shiny object(s) - [shinyBS](http://ebailey78.github.io/shinyBS/) - Add additional functionality and interactivity to Shiny apps, like Alerts, Tooltips and Popovers
- [regexSelect](https://github.com/yonicd/regexSelect) - Enables *regular expression* searches within a *Shiny* selectize object.
- [rintrojs](https://github.com/carlganz/rintrojs/) - R interface to the [Introjs](http://introjs.com/) JS library that let users easily add instructions to their web applications
- [shinycssloaders](https://github.com/andrewsali/shinycssloaders) :+1: - Add loader animations (spinners) to Shiny Outputs in an automated fashion.
- [shinyFeedback](https://github.com/merlinoa/shinyFeedback) - Displays user feedback next to shiny inputs
- [shinyFiles](https://github.com/thomasp85/shinyFiles) - Provides a shiny extension for server side file access
- [shinymaterial](https://github.com/ericrayanderson/shinymaterial) - Implements *Material Design* in Shiny apps
- [shinyjqui]() - R wrapper for the [jQuery UI javascript library](http://jqueryui.com/), that allows users to easily add interactions and animation effects to a *Shiny* app.
- [shinyjs](http://github.com/daattali/shinyjs/) :+1: - It lets you perform common useful JS operations in Shiny apps without having to actually know any JS
- [shinysense](https://github.com/nstrayer/shinysense) `install_github("nstrayer/shinysense")` - Shiny modules to help shiny recall data from more than the keyboard
- [shinythemes](http://rstudio.github.io/shinythemes/) - Makes it easy to alter the overall appearance of any Shiny app
- [shinyTree](https://github.com/tdanker/shinyTree) - Shiny integration with the [jsTree library](http://jstree.com/)
- [shinyWidgets](https://cran.r-project.org/web/packages/shinyWidgets/) :+1: - Provides custom input widgets for Shiny apps. See the live version of the vignette [here](https://dreamrs-vic.shinyapps.io/shinyWidgets/)
- [shiny](http://shiny.rstudio.com/) :heart_eyes: - Easily make interactive, web apps with R. A perfect way to explore data and share findings with non-programmers.
- [shinydashboard](http://rstudio.github.io/shinydashboard/) - Makes it easy to use Shiny to create dashboards-like apps.
- [rmarkdown](http://rmarkdown.rstudio.com/) :heart_eyes: - The perfect workflow for reproducible reporting. Write R code in your markdown reports. When you run render, R Markdown will replace the code with its results and then export your report as an HTML, pdf, or MS Word document, or a HTML or pdf slideshow. The result? Automated reporting. R Markdown is integrated straight into RStudio.
- [flexdashboard](http://rmarkdown.rstudio.com/flexdashboard/) - A flexible and easy way to specify row and column-based layouts, to publish a group of related data visualizations as a dashboard.
- [bookdown](http://bookdown.org/yihui/bookdown/) - This is not what many people would a *fundamental* package, but if you are in the mood to author a book
- [knitr](https://github.com/yihui/knitr) - Provides functionalities to bundle together *R* snippets and *markdown* documents, to easily generate automated reports in various formats.
- [officer](https://github.com/davidgohel/officer) - Allows to manipulate *Word* (.docx) and *PowerPoint* (.pptx) documents
- [RNeo4j](http://github.com/nicolewhite/RNeo4j) -
- [igraph](https://github.com/igraph/rigraph) - A collection of network analysis tools, based on the [igraph](http://igraph.org) library
- [visNetwork](http://datastorm-open.github.io/visNetwork/) - R interface to the open-source JS library [vis.js](http://visjs.org/)
- [networkD3](http://christophergandrud.github.io/networkD3/) - network graphs
- [DiagrammeR](http://rich-iannone.github.io/DiagrammeR/) - R interface to the open-source JS libraries [mermaid.js](http://github.com/knsv/mermaid) and [Graphviz](http://www.graphviz.org/), capable of generating diagrams and flowcharts from text in a similar manner as markdown.
- [sna](https://cran.r-project.org/web/packages/sna/) - A range of tools for Social Network Analysis
- [tigris](https://github.com/walkerke/tigris) -
- [tidycensus](https://github.com/walkerke/tidycensus) -
- [gstat](http://cran.rstudio.com/web/packages/gstat/index.html) - Functions for spatial and spatio-temporal geostatistical modeling, prediction and simulation
- [geoR]() - Geostatistical analysis
- [GeoXp]() - Interactive exploratory spatial data analysis
- [spatstat]() - Spatial Point Pattern analysis
- [spdep]() - A collection of functions and tests for evaluating spatial dependence
- [stars](https://github.com/r-spatial/stars) - (*Proposed package*) Provides functionality for handling dense spatiotemporal data as tidy arrays
- [GWmodel]() - Geographically weighted models
- [spatgraphs]() - Graph Edge Computations for Spatial Point Patterns
- [spacetime](http://cran.rstudio.com/web/packages/spacetime/index.html) -
- [trajectories](http://cran.rstudio.com/web/packages/trajectories/index.html) -
- [akima]() - for spline interpolation
- [deldir](http://cran.r-project.org/web/packages/deldir/deldir.pdf) - Functions to calculate and manipulate Delaunay Triangulations and Dirichlet or Voronoi tessellations of points datasets
- [lawn](https://github.com/ropensci/lawn) - R client for [turf.js](http://turfjs.org/), an *Advanced geospatial analysis for browsers and node*. It also wraps some functions from the *Node* package [geojson-random](https://github.com/mapbox/geojson-random)
- [mapproj](https://cran.r-project.org/web/packages/mapproj/) - Provide simple functions to convert from latitude and logitude into projected coordinates.
- [maps](https://cran.r-project.org/web/packages/maps/) - Simple functions to display geographical maps
- [mapview](https://github.com/r-spatial/mapview) - Interactive visualization of spatial objects in R
- [tmap](https://github.com/mtennekes/tmap) :heart_eyes: - Quick and easy thematic mapping in R, inheriting functionalities from *ggplot2*, like faceting
- [leaflet](http://rstudio.github.io/leaflet/) :heart_eyes: - Interactive mapping tools, conceived as a htmlwidgets wrapper for [leaflet](leafletjs.com) JS library
- [leaflet.extras](https://github.com/bhaskarvk/leaflet.extras) - Provides extra functionality to the `leaflet` package using various [leaflet plugins](http://leafletjs.com/plugins).
- [cartogram](https://github.com/sjewo/cartogram) :sparkles: - Construct continuous area cartograms by a *rubber sheet distortion* algorithm or *non-contiguous Area Cartograms*
- [topogRam](http://github.com/pvictor/topogRam) :sparkles: - It's an htmlwidget for creating continuous cartogram, based on the [implementation with D3.js](http://prag.ma/code/d3-cartogram/#popest/2010) by Shawn Allen.
- [GISTools](http://cran.r-project.org/web/packages/GISTools/GISTools.pdf) - Mapping and spatial data manipulation tools
- [OpenStreetMap]() - Access high res raster maps and satellite imagery to use as a background
- [RgoogleMaps]() - Easily maps any data onto Google Map tiles
- [googleVis]() - Generic package for data viz that contains some functions specifically targeted for mapping
- [choroplethr](http://) - mapping tool
- [RWorldMap]() - lets map easily global data
- [raster]() - Functions for I/O, manipulating and modeling of gridded rasters or spatial data
- [rasterVis]() - raster visualization
- [stplanr](https://github.com/ropensci/stplanr) - Provides functionalities to convert data on travel behaviour into geographic objects that can be plotted on a map and analysed using typical GIS methodology
- [sp](https://github.com/edzer/sp) :+1: - Provides classes and methods for spatial data
- [rgdal](https://cran.r-project.org/web/packages/rgdal/) :+1: - R interface to the popular C/C++ *Geospatial Abstraction Library* [GDAL](http://www.gdal.org/), that enables R to handle a broader range of spatial data formats.
- [rgeos](https://cran.r-project.org/web/packages/rgeos/) :+1: - Tools for handling spatial operations on topologies. R interface to the powerful vector processing library [geos](http://trac.osgeo.org/geos/)
- [sf](https://github.com/r-spatial/sf) :+1: - Support for [*simple features*](https://en.wikipedia.org/wiki/Simple_Features), a new standardized way to encode spatial data, with bindings to GDAL, GEOS and Proj.4.
- [mapedit](https://github.com/r-spatial/mapedit) - Interactive editing of spatial data
- [geojson]() - Provides classes and methods for spatial data defined as [GeoJSON](https://tools.ietf.org/html/rfc7946).
- [maptools](https://cran.r-project.org/web/packages/maptools/index.html) :+1: - Provides various functions for manipulating and reading spatial data from various formats
- [PSBmapping]() -
- [rmapshaper](http://cran.r-project.org/web/packages/rmapshaper/) :+1: -
- [tmaptools](https://github.com/mtennekes/tmaptools) :+1: - Add-on package for *tmap* that provides utilities for reading and processing *shapefiles* and *simple features* formats
Plus, `tmaptools::palette_explorer()` is a great tool for picking *ColorBrewer* palettes
- [geoaxe](https://github.com/ropenscilabs/geoaxe) `install_github('ropenscilabs/geoaxe')` - Provides tools to split geospatial objects into pieces
- [geojsonio](https://github.com/ropensci/geojsonio) - Functions to convert from/to geojson objects
- [geoops](https://github.com/ropenscilabs/geoops) `install_github('ropenscilabs/geoops')` - Provides spatial operations on GeoJSON that work with the *geojson* package
- [siftgeojson](https://github.com/ropenscilabs/siftgeojson) `install_github('ropenscilabs/siftgeojson')` - Provides functions to slice and dice GeoJSON just as easily as a data.frame. It is built on top of *jqr*, an R wrapper for [jq](https://stedolan.github.io/jq/), a JSON processor.
- [geosphere](https://cran.r-project.org/web/packages/geosphere/) - Spherical trigonometry for geographic applications: measures for angular (longitude/latitude) locations.
- [mapsapi](https://github.com/michaeldorman/mapsapi/issues) - Interface to the *Directions*, *Distance Matrix* and *Geocode* *'Google Maps* APIs
- [zoo](http://cran.r-project.org/web/packages/zoo/) - Provides the most popular format for saving and handling with time series objects in R.
- [xts](http://github.com/joshuaulrich/xts) - Extensible time series class that provides uniform handling of many *R* ts classes by extending zoo.
- [timetk](https://github.com/business-science/timetk) - Formerly *timekit*, it's a collection of tools for working with time series
- [forecast](http://github.com/robjhyndman/forecast) - Makes it incredibly easy to fit time series models like ARIMA, ARMA, AR, Exponential Smoothing, etc.
- [sweep](https://github.com/business-science/sweep) - Tries to link the *forecast* package with the *tidyverse*, so to extend the *broom* tools for forecasting and time series analysis
- [prophet](https://facebookincubator.github.io/prophet/) - Forecasting tool from Facebook
- [tibbletime](https://github.com/business-science/tibbletime) - Provides functionalities for *time-aware* tibbles
- [mlr](http://github.com/mlr-org/mlr) - R Interface to a large number of classification and regression techniques.
- [class](http://cran.r-project.org/web/packages/class/) - Various functions for classification, including kNN, LVQ and SOM.
- [caret](http://cran.r-project.org/web/packages/caret/) - Tools for Classification And Regression Training models, with the intent to combine model training and prediction. A set of functions that attempt to streamline the process for creating predictive models
- [h2o](https://github.com/h2oai/h2o-3) - Open Source Fast Scalable Machine Learning API that provides implementations of many popular algorithms in one single platform.
- [klaR](http://cran.r-project.org/web/packages/klaR) - Miscellaneous functions for classification and visualization
- [ROCR](http://cran.r-project.org/web/packages/ROCR/) - Visualizing the performance of scoring classifiers
- [pROC](http://cran.r-project.org/web/packages/pROC/) - Display and Analyze ROC Curves
- [randomForest](http://cran.r-project.org/web/packages/randomForest/) - Classification methods used to create large number of decision trees, then each observation is inputted into the decision tree. The common output obtained for maximum of the observations is considered as the final output.
- [ranger](https://github.com/imbs-hl/ranger) - A Fast Implementation of Random Forests
- [e1071](http://cran.r-project.org/web/packages/e1071/) - Latent class analysis, support vector machine, fuzzy clustering, Fourier transforms, shortest path computation, bagged clustering, naive Bayes classifier, ...
- [tree](http://cran.r-project.org/web/packages/tree/) - Classification and regression trees.
- [rpart](http://cran.r-project.org/web/packages/rpart/) - Recursive Partitioning And Regression Trees: classification/regression models using a two stage procedure, with the resultant model represented in the form of binary trees
- [party](http://cran.r-project.org/web/packages/party/) - recursive partitioning, using ensemble methods, to build decision trees based on Conditional Inference algorithm
- [partykit](http://cran.r-project.org/web/packages/partykit/) - A Toolkit for Recursive Partytioning
- [arules](http://cran.r-project.org/web/packages/arules/) - Mining Association Rules and Frequent Itemsets
- [nnet](http://cran.r-project.org/web/packages/nnet/) - Feed-forward Neural Networks and Multinomial Log-Linear Models
- [neuralnet](http://cran.r-project.org/web/packages/neuralnet/) - Training of neural networks using back-propagation
- [kknn](https://cran.r-project.org/web/packages/kknn/) - Weighted k-Nearest Neighbors for Classification, Regression and Clustering
- [kernlab](http://cran.r-project.org/web/packages/kernlab/) - KERNel-based Machine Learning LABoratory
- [C50](http://) -
- [xgboost](https://cran.r-project.org/web/packages/xgboost/) - Efficient implementation of the gradient boosting framework from [Chen & Guestrin]()
- [gbm](http://cran.r-project.org/web/packages/gbm/) - Gradient Boosting Machine
- [AppliedPredictiveModeling](http://) -
- [earth](http://) -
- [mda](http://) -
- [tau](http://cran.r-project.org/web/packages/tau/) - Text Analysis Utilities
- [tidytext](https://github.com/juliasilge/tidytext) - Text mining using tidyverse tools
- [tm](http://cran.r-project.org/web/packages/tm/) - A framework for text mining applications within R.
- [ada](http://cran.r-project.org/web/packages/ada/) - Stochastic Boosting
- [adabag](http://www.jstatsoft.org/index.php/jss/article/view/v054i02/adabag_An_R_Package_for_Classification_with_Boosting_and_Bagging.pdf) - Classification with Boosting and Bagging
- [RoogleVision](http://) - a Package for Image Recognition
- [stats](http://stat.ethz.ch/R-manual/R-devel/library/stats/html/00Index.html) - Contains functions for statistical calculations and random number generation
- [broom](http://github.com/tidyverse/broom) - Convert Statistical Analysis Objects into Tidy Data Frames
- [ggeffects](https://github.com/strengejacke/ggeffects) - Create tidy dataframes of marginal effects for *ggplot2* from model outputs
- [modelr](http://github.com/hadley/modelr) - Helper functions for modelling (full documentation is available in the online book [R for Data Science](http://r4ds.had.co.nz/model-basics.html), mostly in the *Model basics* chapter)
- [car](http://) - Contains functions and datasets associated with the book [An R Companion to Applied Regression](http://socserv.socsci.mcmaster.ca/jfox/Books/Companion/index.html). Functions herein could be applied to a fitted regression model, perform additional calculations on the model or possibly compute a different model, and then return values and graphs.
- [rms](http://biostat.mc.vanderbilt.edu/wiki/Main/RmS) -
- [gnm]() - Provide functions to specify and fit generalized nonlinear models
- [mgcv](https://cran.r-project.org/web/packages/mgcv/) - Functionalities for fitting and working with *GAM*s (Generalized Additive Models), *GAMM*s (Generalized Additive Models) and other Generalized Ridge Regression
- [gam](https://cran.r-project.org/web/packages/gam/index.html) - Functionalities for fitting and working with *GAM*s
- [nlme](https://github.com/lme4/lme4) **core** - Fit and compare Gaussian Linear and Non-linear Mixed Effects models
- [lme4](https://github.com/lme4/lme4) - Linear and Non-linear Mixed Effects models, using S4 classes and algorithms from the [Eigen](http://eigen.tuxfamily.org) C++ library, via the [RcppEigen](http://github.com/RcppCore/RcppEigen) interface layer
- [multcomp](https://cran.r-project.org/web/packages/multcomp/) - Tools for multiple comparison testing
- [glmnet](http://cran.r-project.org/web/packages/glmnet/) - Lasso and elastic-net regularized GLM with cross validation
- [lars](https://cran.r-project.org/web/packages/lars/) - Alternative package for glmnet
- [biglasso](https://github.com/YaohuiZeng/biglasso) - Extend lasso and elastic-net model fitting to Big Data
- [survival](https://github.com/therneau/survival) - Tools to perform survival analysis
- [dismo](http://) - Boosted Regression Trees for ecological modeling
- [extrafont](https://github.com/wch/extrafont) -
- [emojifont](https://github.com/GuangchuangYu/emojifont) - Provides functionalities to use emoji and fontawesome fonts in both base and ggplot2 graphics
- [emo(ji)](https://github.com/hadley/emo) `install_github('hadley/emo')` - Makes it very easy to insert [emoji]( https://github.com/muan/emojilib/) into RMarkdown documents.
- [fontcm](https://github.com/wch/fontcm) -
- [showtext](https://github.com/yixuan/showtext) -
- [giphyr](https://github.com/haozhu233/giphyr) - Makes it easy to insert GIFs into rmarkdown presentation, only if using RStudio.
- [RColorBrewer](http://cran.r-project.org/web/packages/RColorBrewer/) - Provides an easy way to select adequate color palettes for any visualization, following [ColorBrewer](http://colorbrewer2.org/) advises.
- [colorspace](https://cran.r-project.org/web/packages/colorspace/) - Provides color palettes based on HCL colors. Also included an interactive GUI color picker
- [rwanthue](https://github.com/hoesler/rwantshue) `install_github('hoesler/rwantshue')` - inspired by [IWantHue](https://github.com/medialab/iwanthue)
- [wesanderson](https://github.com/karthik/wesanderson) - A colour palette inspired by Wes Anderson.
- [viridis](https://github.com/sjmgarnier/viridis) - Implementation of the python [Matplolib](http://matplotlib.org/) *viridis* color map
- [polychrome]() - Provides a few qualitative palettes with many colors
- [yarrr](https://github.com/ndphillips/yarrr) - Tons of palettes included, just use `pirateplot()` to display them all
- [munsell](https://github.com/cwickham/munsell) - Provides a mapping between Munsell's orginal notation and most common hexidecimal sRGB strings.
- [dichromat]() - Color-blind friendly palettes.
- [Cairo](https://cran.r-project.org/web/packages/Cairo/) - R graphics device using the [cairo graphics library](https://www.cairographics.org/) for creating high-quality graphics outpu
- [randomcoloR](https://cran.r-project.org/web/packages/randomcoloR/) - Simple methods to generate *attractive* random colors, as a wrapper of the JS library [randomColor.js](https://github.com/davidmerfield/randomColor), or *optimally distinct* colors based on k-means, inspired by [IWantHue](http://tools.medialab.sciences-po.fr/iwanthue/)
- [qualpalr](https://github.com/jolars/qualpalr) - Another package able to generate *distinct qualitative* color palettes inspired by [IWantHue](http://tools.medialab.sciences-po.fr/iwanthue/)
- [dygraphs](http://rstudio.github.io/dygraphs/) :heart_eyes: - R interface to the [dygraphs](http://dygraphs.com/) JS library for time series, one-line command if your data is an xts object.
- [plotly](https://github.com/ropensci/plotly) - R interface to the [Plotly](http://plot.ly/javascript/) JS library. Includes a *ggplotly* function to convert on the fly graphs created with *ggplot2*
- [highcharter](https://github.com/jbkunst/highcharter) - R interface to the [Highcharts](http://www.highcharts.com/) JS library
- [rbokeh](http://github.com/bokeh/rbokeh/) - R interface to the [Bokeh](http://bokeh.pydata.org/) JS library
- [d3heatmap](https://github.com/rstudio/d3heatmap) -
- [metricsgraphics](http://hrbrmstr.github.io/metricsgraphics/) - R interface to the [metricsgraphics](http://metricsgraphicsjs.org/) JS library for bare-bones line, scatterplot and bar charts
- [rthreejs](http://github.com/bwlewis/rthreejs) - R interface to the [threejs](http://threejs.org/) JS library for interactive 3D scatterplots and globes.
- [rglwidget](http://) - Interactive 3D visualizations with R
- [scatterD3](http://github.com/juba/scatterD3) - Interactive scatter plots visualization
- [ECharts2Shiny](https://github.com/XD-DENG/ECharts2Shiny) - R interface to the [ECharts](https://github.com/ecomfe/echarts) library
- [hexjsonwidget](https://github.com/psychemedia/htmlwidget-hexjson) `install_github('psychemedia/htmlwidget-hexjson')` - Provides functionalities to display [HexJSON](https://odileeds.org/projects/hexmaps/hexjson.html) maps based on the [d3-hexjson](https://github.com/olihawkins/d3-hexjson) library
- [trelliscopejs](https://github.com/hafen/trelliscopejs) - R interface to the [Trelliscope](https://github.com/hafen/trelliscopejs-lib) JS library.
- [ggconf](https://github.com/caprice-j/ggconf) - Concise appearance modification of ggplot2 themes elements
- [ggsci](https://github.com/road2stat/ggsci) - Collection of palettes inspired by scientific journals, data viz libraries, science fiction movies, and TV shows
- [ggtech](https://github.com/ricardo-bion/ggtech) `install_github('ricardo-bion/ggtech')` - Collection of palettes inspired by tech startup
- [ggthemes](http://github.com/jrnold/ggthemes) - Collection of various themes and scales
- [ggthemr](https://github.com/cttobin/ggthemr) `install_github('cttobin/ggthemr')` - Collection of various themes
- [hrbrthemes](https://github.com/hrbrmstr/hrbrthemes) - provides typography-centric themes
- [cowplot](https://github.com/wilkelab/cowplot) - Provides functionalities to label and arrange figures created by ggplot2 into a grid., plus custom annotations and styles focused for scientific publications
- [directlabels](https://github.com/tdhock/directlabels) - Functionalities for automatically placing direct labels onto multicolor plots
- [egg](https://cran.r-project.org/web/packages/egg/) - Miscellaneous functions to help customise multiple *ggplot2* objects in different layouts
- [**geofacet**](https://github.com/hafen/geofacet) - Provides geographical faceting functionality
- [geomnet](http://github.com/sctyner/geomnet) - Provides a geometry to visualize graphs and networks, plus a function to calculate network layouts with the *sna* package
- [ggallin](https://github.com/shabbychef/ggallin) `install_github('shabbychef/ggallin')` - Misc extra geoms and scales
- [ggaluvial](https://github.com/corybrunson/ggalluvial) - Provides geometries to create [alluvial](https://github.com/mbojan/alluvial) diagrams
- [ggally](http://github.com/ggobi/ggally) - Reduce the complexity of combining geometric objects with transformed data
- [gggalt](http://github.com/hrbrmstr/ggalt) - Provides extra coordinate systems, geometries, statistical transformation and scales
- [gganimate](http://github.com/dgrtwo/gganimate/) `install_github('dgrtwo/gganimate')` - Wraps the *animation* package to create animated *ggplot2* plots
- [ggedit](https://github.com/metrumresearchgroup/ggedit) - Interactively edit ggplot layer aesthetics and theme definitions
- [**ggExtra**](http://github.com/daattali/ggExtra) - Add marginal plots to ggplot2
- [ggfittext](https://github.com/wilkox/ggfittext) - Provides a geometry to fit text into boxes
- [ggforce](http://github.com/thomasp85/ggforce) - Repository of missing functionalities of any nature and type
- [ggfortify](http://github.com/sinhrks/ggfortify) - Data Visualization Tools for Statistical Analysis Results in a unified style
- [**gghighlight**](https://github.com/yutannihilation/gghighlight) - Provides functionalitites to highlight conditionally lines and points geometries in ’ggplot2
- [ggimage](https://github.com/GuangchuangYu/ggimage) - Provides integration of image files and graphic objects
- [**ggiraph**](http://github.com/davidgohel/ggiraph) - Provides interaction to some geometries
- [ggiraphExtra](https://github.com/cardiomoon/ggiraphExtra) - Provides additional interactivity on top of ggiraph
- [ggmap](https://github.com/dkahle/ggmap) - Extends the plotting capabilities of *ggplot2*; in particular, it enables the downloading of background maptiles.
- [ggmcmc](https://github.com/xfim/ggmcmc) - Graphical tools for analyzing Markov Chain Monte Carlo simulations from Bayesian inference
- [ggmosaic](https://github.com/haleyjeppson/ggmosaic) - Add mosaic functionality to ggplots
- [ggnetwork](http://github.com/briatte/ggnetwork) - Add geometry to plot networks
- [ggnet](http://github.com/briatte/ggnet) `install_github('briatte/ggnet')` -
- [ggplus](http://github.com/guiastrennec/ggplus) `install_github('guiastrennec/ggplus')` - A set of additional functions for ggplot2
- [ggpmisc](https://bitbucket.org/aphalo/ggpmisc) - Miscellaneous Extensions to *ggplot2*
- [ggpubr](https://github.com/kassambara/ggpubr) - Provides some easy-to-use functions for creating and customizing ‘ggplot2’- based publication ready plots.
- [ggradar](https://github.com/ricardo-bion/ggradar) `install_github('ricardo-bion/ggradar')` - Provides a function to build radar charts in moments
- [ggRandomForests](https://github.com/ehrlinger/ggRandomForests) - Graphical analysis of random forests using the packages *randomForestSRC* and *randomForest*
- [ggraph](https://github.com/thomasp85/ggraph) - Supports relational data structures such as networks, graphs, and trees.
- [**ggrepel**](https://github.com/slowkow/ggrepel) - Provides geometries to repel overlapping text labels
- [**ggridges**](https://github.com/clauswilke/ggridges) - Provides geometries to make ridgeline, a convenient way of visualizing changes in distributions over time or space (this package replaces [ggjoy](https://github.com/clauswilke/ggjoy))
- [ggseas](https://github.com/ellisp/ggseas) - Provides a geometry that shows seasonal adjustments
- [ggsignif](https://github.com/const-ae/ggsignif) - Provides tools to add annotations for significance tests
- [**ggspatial**](http://github.com/paleolimbot/ggspatial) - provides several functions to convert spatial objects to ggplot2 layers
- [ggstance](http://github.com/lionel-/ggstance) - Implements horizontal versions of the most common geometries, stats, and positions (note that *ggplot* only flip the entire plot)
- [ggtern](http://github.com/nicholasehamilton/ggtern) - Extends the functionality of ggplot2, giving the capability to plot ternary diagrams for (subset of) the proto geometries
- [ggTimeSeries](http://github.com/Ather-Energy/ggTimeSeries) `install_github('Ather-Energy/ggTimeSeries')` - Provides alternative way to display time series
- [lemon](https://github.com/stefanedwards/lemon) - Provides added functionalities for axes and legends
- [**plotROC**](http://github.com/sachsmc/plotROC) `install_github('sachsmc/plotROC')` - Provides functions to generate interactive ROC curve plots
- [qqplotr](https://github.com/aloy/qqplotr) - Provides added functionalities for drawing of both QQ and PP points, lines, and confidence bands.
- [survminer](https://github.com/kassambara/survminer) - Provides functions for survival analysis and visualization
- [treemapify](https://github.com/wilkox/treemapify) - Provides geometries for drawing treemaps
- [waffle](https://github.com/hrbrmstr/waffle) - Provides functionality to make *waffle* charts (square pie charts)
- [ggplot2](http://docs.ggplot2.org/current/) :heart_eyes: - The most famous package for making amazing graphics in R. *ggplot2* lets you use the [grammar of graphics](http://vita.had.co.nz/papers/layered-grammar.pdf 'A paper by Hadley Wickham') to build layered, customizable plots.
- [ggvis](http://github.com/rstudio/ggvis) - Interactive, web based graphics built like ggplot2 with the grammar of graphics (someone said that ggvis would have been the new version of ggplot2, but Hadley just released ggplot2 2 last december)
|- [lattice](https://github.com/deepayan/lattice) - Implementation of Trellis graphics for R, in some ways the main __*competitor*__ to *ggplot*
- [latticeExtra]() - Add further functionalities to the *lattice* package
- [googleVis](http://github.com/mages/googleVis) - Wrapper for the [Google Chart API]()
- [corrplot](http://github.com/taiyun/corrplot) - Visualize correlation matrix using correlogram
- [corrgram](https://github.com/kwstat/corrgram) - Visualize correlation matrix using correlogram
- [ggparallel](https://github.com/heike/ggparallel) - Set of functions to draw parallel coordinate plots for categorical data
- [vcd](http://cran.r-project.org/web/packages/vcd/) - Visualization tools and tests for categorical data
- [vcdExtra](https://cran.r-project.org/web/packages/vcdExtra/) - Complement to the *vcd* and the *gnm* packages
- [gridExtra](http://github.com/baptiste/gridextra/wiki) - Provides a number of user-level functions to work with *grid* graphics
- [animint](http://github.com/tdhock/animint) `install_github('tdhock/animint')` - Provide tools to design multi-layer, multi-plot, interactive, and possibly animated data visualizations using *ggplot2*, and rendering with [D3](http://d3js.org/)
- [sjplot](https://github.com/strengejacke/sjPlot) - Collection of plotting and table output functions for data visualization, with a focus on Statistics in Social Science
- [tabplot](https://github.com/mtennekes/tabplot) - Provides visualization methods to explore and analyse large multivariate datasets.
- [treemap](https://github.com/mtennekes/treemap) - Provides functionalities for drawing treemaps
- [circlize](https://github.com/jokergoo/circlize) - Provides an implementation of circular layout generation
- [rCharts](https://github.com/ramnathv/rCharts) `install_github('ramnathv/rCharts')` - allow for interactive JS charts from R
- [clickme](https://github.com/nachocab/clickme) `install_github('nachocab/clickme')` - allow for interactive JS charts from R
- [rcdimple](http://github.com/timelyportfolio/rcdimple) - R interface to the [dimple](http://dimplejs.org/) JS charts library, an object-oriented API for business analytics.
- [timevis](http://github.com/daattali/timevis) - Interactive timeline visualizations in R.
- [alluvial](https://github.com/mbojan/alluvial) - Provides functions to draw alluvial diagrams
- [riverplot](http://cran.r-project.org/web/packages/riverplot/) - Allows the creation of a basic type of Sankey diagrams
- [animation]() -
- [tweenr](https://github.com/thomasp85/tweenr) - Provides functions to interpolate data between different states
- [misc3d]() - Miscellaneous functions for three dimensional plots
- [hexbin]() - Provides bivariate binning into hexagonal cells, in an attempt to override overlapping in scatterplots
- [dendextend](https://github.com/talgalili/dendextend) - Extends R core dendrogram functionality
- [voteogram](https://github.com/hrbrmstr/voteogram) `install_github('hrbrmstr/voteogram')` - Voting Cartogram Generators (currently limited to U.S. House and Senate)
- [Rgraphviz]() - Provides plotting capabilities for R graph objects
- [coefplot](https://github.com/jaredlander/coefplot) - Provides functionalities for plotting the coefficients and st.err from a variety of models: lm, glm, glmnet, maxLik, rxLinMod, rxGLM and rxLogit.
- [likert](http://github.com/jbryer/likert) - A package designed to help analyzing and visualizing Likert type items
- [wordcloud2](http://github.com/lchiffon/wordcloud2) - R interface to the [wordcloud2](http://github.com/timdream/wordcloud2.js) JS library
- [DT](https://github.com/rstudio/DT) :heart_eyes: - R interface to the [DataTables](https://datatables.net/) JS library
- [formattable](https://github.com/renkun-ken/formattable) -
- [rhandsontable](jrowen/rhandsontable) - R interface to the [handsontable](http://http//handsontable.com/) JS library
- [huxtable](https://github.com/hughjonesd/huxtable) - Provides functionalities to create modern LaTeX and HTML tables
- [flextable](https://github.com/davidgohel/flextable) - Provides a framework to easily create tables for reporting with *RMarkdown*/*Shiny* or *Word*/*Powerpoint*
- [kableExtra](https://github.com/haozhu233/kableExtra) - Add functionalities to `kable` package to construct more complex tables. It can also be added to `formattable`.
- [simpletable](http://cran.rstudio.com/web/packages/SimpleTable/index.html) - (Not to be mistaken with [SimpleTable](https://cran.rstudio.com/web/packages/SimpleTable/index.html))
- [pixiedust](https://github.com/nutterb/pixiedust) - Provide functionalities to build customized tables in R output
- [sparktable]() -
- [rpivotTable](http://github.com/smartinsightsfromdata/rpivotTable) -
- [D3TableFilter](http://)
- [listviewer](https://github.com/timelyportfolio/listviewer) - R interface to [jsoneditor](https://github.com/josdejong/jsoneditor), lets interactively view and maybe modify lists.
- [xtable](https://cran.r-project.org/web/packages/xtable) - The xtable function takes an R object (like a data frame) and returns the latex or HTML code you need to paste a pretty version of the object into your documents. Copy and paste, or pair up with R Markdown.
- [classInt](http://cran.r-project.org/web/packages/classInt/) - Commonly used methods for choosing univariate class intervals, mainly for data visuaization purposes
- [matrixStats](http://cran.r-project.org/web/packages/matrixStats/) - High-performing functions operating on rows and columns of matrices, optimized per data type and submatrices
- [mice](http://)
- [Amelia](http://)
- [missForest](http://)
- [mi](http://)
- [VIM](http://)
- [rrcovNA](http://)
- [mvnmle](http://)
- [missMDA](http://)
- [norm](http://)
- [softimpute](http://)
- [validate](https://github.com/data-cleaning/validate) - Provides functionalities to firstly define data validation rules independent of the code or dataset, then confront a dataset, or various versions thereof, with the rules.
- [dataCompareR](https://github.com/capitalone/dataCompareR) - Allows users to compare two datasets and view a report on the similarities and differences.
- [data.table](https://github.com/Rdatatable/data.table) :heart_eyes: - An alternative way to organize data sets for very, very fast operations. Useful when dealing with large data sets.
- [dplyr](http://github.com/tidyverse/dplyr) - Essential SQL-like shortcuts for subsetting, summarizing, rearranging, and joining together data sets. An easy to use substitute for *split-apply-combine* functionality in Base R:
- *split* a data structure into groups
- *apply* a function on each group
- *combine* and return the results in a possibly different data structure
- [tidyr](http://github.com/hadley/tidyr) - Provides functionality for changing the layout of any dataframe, like *gather* and *spread*, to convert datasets in a *tidy* format. Upscale version of the now superseeded [reshape2](http://github.com/hadley/reshape)
- [gdata](https://cran.r-project.org/web/packages/gdata/) - Provides various tools for data IO, manipulation and wrangling
- [purrr](http://github.com/hadley/purrr) - Provides lots of functional programming tools, including important features from other languages
- [magrittr](https://github.com/tidyverse/magrittr) - Provides a set of operators which make the code more readable
- [sjmisc](http://www.strengejacke.de/sjmisc/) - Collection of miscellaneous utility functions, designed to work together seamlessly with packages from the tidyverse, and sjPlot.
- [plyr](https://github.com/hadley/plyr) - Even if mostly superseeded by *dplyr*, it is still great when dealing with lists
- [scales](https://github.com/hadley/scales) - Provide functions to implement scales in a way that is graphics system agnostic
- [xda](http://github.com/ujjwalkarn/xda) - Contains several tools to perform initial exploratory analysis on any input dataset.
- [funModeling](http://github.com/pablo14/funModeling) - Contains several tools to perform data cleaning, importance variable analysis and model perfomance
- [gmodels](http://cran.r-project.org/web/packages/gmodels/) - Various functionalities for model fitting
- [questionr](https://github.com/juba/questionr) - Provides functions to make surveys processing easier
- [janitor](https://github.com/sfirke/janitor) - Simple tools for data cleaning
- [rowr](http://cran.r-project.org/web/packages/rowr/) - Allows the manipulation of R objects as if they were organized rows in a way that is familiar to people used to working with databases.
- [stringr](https://github.com/tidyverse/stringr) - Easy to learn tools for text manipulation, regular expressions included. Most functions are prefixed with `str_` so they are very easy to remember.
- [glue](https://github.com/tidyverse/glue) - Potentially, the best replacement for the *paste* function
- [lubridate](https://github.com/tidyverse/lubridate) - Tools that make working with dates and times easier.
- [hms]() -
- [forcats]() -
- [qdapRegex](http://) - Collection of reg-expr tools built in the context of discourse analysis (see qdap package), though often useful outside of it
- [fst](http://github.com/fstpackage/fst) - A new and fast way to store dataframes/data.tables to disk, even with data compression.
- [feather](https://github.com/wesm/feather) - Store dataframes to disk lightning fast and shareable between R and Python.
- [readr](https://github.com/tidyverse/readr) - Provide a fastest way to read rectangular data than core *R* functions, in case of huge files
- [rio](https://github.com/leeper/rio) - The aim of rio is to make data file I/O in *R* as easy as possible by implementing just a few simple functions: import, export and convert.
- [openxlsx](http://github.com/awalker89/openxlsx) - Provide an interface to writing, styling and editing Excel files
- [readxl](https://github.com/tidyverse/readxl) - Easiest way to reading Excel files, without using JAVA dependencies
- [XLConnect](https://github.com/miraisolutions/xlconnect) - Comprehensive and cross-platform package for manipulating Excel files (requires Java)
- [xml2](http://github.com/r-lib/xml2) - R binding to the C parser [libxml2](http://xmlsoft.org/), making it easy to work with HTML and XML documents
- [jsonlite](https://github.com/jeroen/jsonlite) - A Robust, High Performance JSON Parser and Generator
- [downloader](http://github.com/wch/downloader) - Wrapper for base R download function that eases dealing with files over https
- [googlesheets](http://github.com/jennybc/googlesheets) - Easily read data into R from Google Sheets
- [rdrop2](https://github.com/karthik/rdrop2) - R interface for Dropbox
- [foreign](http://) - functionalities to read from and write to other (mostly proprietary) statistical software
- [haven]() - for SPSS, SAS and Stata files
### Database Driver
- [DBI](https://github.com/r-dbi/DBI) - Provides a common interface between *R* and database management systems (DBMS).
- [pool](https://github.com/rstudio/pool) - Object pooling
- [sqldf](http://github.com/ggrothendieck/sqldf) - Run SQL queries on any data frame with [sqldf syntax](http://www.sqlite.org/lang.html)
- [RSQLite](https://github.com/rstats-db/RSQLite) - Embeds the SQLite database engine in R
- [RMySQL](https://github.com/rstats-db/RMySQL) - R interface and driver to MySQL databases
- [RPostgres](https://github.com/rstats-db/RPostgres) - R interface and driver to PostgreSQL databases
- [odbc](https://github.com/rstats-db/odbc) - Provide a connector to DBMS without a standalone driver
- [rmongodb](http://) - connector to a mongoDB database
### Data Processing
- [Data I/O](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-11-data-io-md)
- [Data Manipulation (acting on atomics)](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-12-data-manipulation-md)
- [Data Wrangling (acting on structures)](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-13-data-wrangling-md)
- [Data Validation](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-14-data-validation-md)
- [Data Imputation (missing data), Anomaly Detection (outliers)](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-15-data-imputation-anomaly-detection-md)
### Data Exploration
- [Data Summaries](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-21-data-summaries-md)
- [Data Display](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-22-data-display-md)
- [Data Visualization](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-data-visualization-md)
- [ggplot extensions](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-1-ggplot-extensions-md) (see [gallery](http://www.ggplot2-exts.org/))
- [ggplot themes](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-2-ggplot-themes-md)
- [htmlwidgets, JS wrappers](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-3-htmlwidgets-js-wrappers-md) (see [gallery](http://www.htmlwidgets.org/))
- [palettes](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-4-palettes-md)
- [fonts](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-23-5-fonts-md)
### Data Understanding
- [Data Modeling](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-31-data-modeling-md)
- [Data Mining, Machine Learning](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-32-data-mining-machine-learning-md)
- [Time Series, Forecasting](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-33-time-series-forecasting-md)
- Spatial Data (the emphasis here is on economic and social applications)
- [Generics, Tools, Utilities](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-34-1-spatial-data-generics-tools-utilities-md)
- [Mapping](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-34-2-spatial-data-mapping-md)
- [Analysis, Geocomputation](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-34-3-spatial-data-analysis-geocomputation-md)
- [Localization](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-34-4-spatial-data-localization-md)
- [Graphs, Network](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-35-graphs-network-md)
### Data Presentation
- [Data Reporting](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-41-data-reporting-md)
- [Shiny extensions](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-41-1-shiny-extensions-md)
### Applications
- [Matrix Calculus](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-51-matrix-calculus-md)
- [Probability, Simulation, Computational Statistics](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-52-probability-simulation-computational-statistics-md)
- [Quantitative Analyis, Applied Finance](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-53-quantitative-analyis-applied-finance-md)
- [Digital Analytics](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-54-digital-analytics-md)
- [Meta-Analyis](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-55-meta-analyis-md)
- [BioConductor](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-56-bioconductor-md)
- [Other Applications](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-59-other-applications-md)
### Programming Tools
- [High Performance](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-61-high-performance-md)
- [Big Data](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-61-high-performance-md)
- [Cloud Computing](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-63-cloud-computing-md)
- [Web, Internet](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-64-web-internet-md)
- [APIs](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-64-1-api-clients-md)
- [Package Development](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-64-web-internet-md)
- [Version Control](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-66-version-control-md)
- [Utilities](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-67-utilities-md)
### Other ....
- [Datasets](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-71-datasets-md)
- [Miscellanea](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-72-miscellanea-md)
- [External Tools](https://gist.github.com/lvalnegri/20d464fcf9b37d4c514bd355aff15984#file-72-miscellanea-md)
以上是关于markdown !R_packages_list.md的主要内容,如果未能解决你的问题,请参考以下文章