htmlwidgets

repository·master·Indexed 21 days ago

https://github.com/ramnathv/htmlwidgets

A framework for creating R bindings to JavaScript libraries, enabling the use of JS visualization tools within R-based workflows such as Shiny, R Markdown, the RStudio Viewer, and standalone web pages.

Tokens
299
Snippets
1
Records
3
Agent score
24%

What's inside htmlwidgets

  1. Overview of the htmlwidgets framework

    master

    The htmlwidgets package provides a framework for creating R bindings to JavaScript libraries. Widgets created with this framework can be used in several environments:

    • R Console: Used for data analysis via the RStudio Viewer, similar to conventional R plots.
    • R Markdown: Seamlessly embedded within documents.
    • Shiny: Integrated into web applications.
    • Standalone: Saved as independent web pages for sharing.
  2. Install the htmlwidgets package

    master

    You can install the stable version of htmlwidgets from CRAN or the development version from GitHub.

    To install the CRAN version:

    install.packages("htmlwidgets")

    To install the development version using devtools:

    devtools::install_github('ramnathv/htmlwidgets')