jimhester / knitrBootstrap

A framework to create bootstrap styled HTML reports from knitr Rmarkdown.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rpivotTable is not getting drawn with this

KrishnaPG opened this issue · comments

This knitrBootstrap is not displaying the R HTML Widget https://github.com/smartinsightsfromdata/rpivotTable

Normal 'html_document' output type is producing correctly.

Sample code to reproduce the problem:


---
output:
  knitrBootstrap::bootstrap_document:
    title: "Test file"
    theme: amelia
    highlight: sunburst
    theme.chooser: TRUE
    highlight.chooser: TRUE

---

> 
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)

requiredPackages <- c('htmlwidgets', 'rpivotTable')

for(p in requiredPackages) {
  if(!is.element(p, .packages(all.available = TRUE)))    install.packages(p)
  library(p,character.only = TRUE)
}
data(HairEyeColor)
rpivotTable(data = HairEyeColor, rows = "Hair",cols="Eye", vals = "Freq", aggregatorName = "Sum", rendererName = "Table", width="100%", height="400px")

This seems to work as expected with #68. Use devtools::install_github('jimhester/knitrBootstrap', ref='rmarkdown_template') to install the latest version.

Getting this error:

image

Sorry, there was a typo in the repo name. Now fixed above.