Giter Club home page Giter Club logo

lazyrmd's Introduction

lazyrmd Build Status

The lazyrmd R package provides an R Markdown html output format that enables plot outputs in the document to be lazily loaded. It is useful for large R Markdown documents with many plots, as it allows for a fast initial page load, deferring the loading of individual graphics to the time that the user navigates near them.

Installation

options(repos = c(tessera = "http://packages.tessera.io",
  getOption("repos")))
install.packages("lazyrmd")

or

devtools::install_github("hafen/lazyrmd")

Usage

To enable lazy loading, you need to do two things in your R Markdown document:

  1. Change your output format from html_document to lazyrmd::lazy_render in the front-matter of your document, e.g.:

    ---
    title: "Lazy Loading Test"
    author: "Ryan Hafen"
    output: lazyrmd::lazy_render
    ---

    Note that the lazyrmd::lazy_render is a wrapper around rmarkdown so all front-matter options for rmarkdown::html_document are valid for lazyrmd::lazy_render.

  2. Add lazy=TRUE to any chunk whose output is an htmlwidget that you would like to have load lazily, e.g.:

     ```{r, lazy=TRUE}
     library(rbokeh)
     figure(width = 800) %>%
       ly_points(date, Freq, data = flightfreq,
         hover = list(date, Freq, dow), size = 5) %>%
       ly_abline(v = as.Date("2001-09-11"))
     ```
    

    The output of this block will not be part of the page load when viewing the resulting html document. Instead, a blank space for the plot will be held and when the user gets close to the point in the document at which they will be viewing the plot, it will be loaded into the page.

How it works

Currently the package only works for htmlwidget output, but adding support for lazy loading of raster graphics should be very straightforward.

For htmlwidgets, this package overrides the knit_print.htmlwidget method in the htmlwidgets package. If the user has not specified that the output should be lazily loaded with lazy=TRUE, it passes the plot on to this default method. However, if lazy=TRUE has been specified, a utility function, print_lazy_widget() is called which saves out the output of the plot as an independent html file and returns a placeholder for the plot. Javascript code is automatically embedded in the html page that will cause the plot to load based on the page scrolling actions of the user.

Note that this approach is not possible with standalone html output - we must store the plots separately. Otherwise, we would defeat the purpose of why this package was created.

For adding support for raster graphics output, I just need to get a little more acquainted with the knit_print method for these and the rest will be easy.

Acknowledgements

This package uses the very lightweight recliner.js library to handle lazy loading.

lazyrmd's People

Contributors

hafen avatar

Watchers

James Cloos avatar CRAN robot avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.