Skip to content

Instantly share code, notes, and snippets.

@flying-sheep
Created August 8, 2017 16:08
Show Gist options
  • Save flying-sheep/fa36fd5e041a05beb32b844b065b128e to your computer and use it in GitHub Desktop.
Save flying-sheep/fa36fd5e041a05beb32b844b065b128e to your computer and use it in GitHub Desktop.
IRkernel bisecting
#!/bin/bash
git bisect start
git bisect good 0.8.6
git bisect bad master
git bisect run bash test.sh
git bisect log
ptbl <- rpivotTable::rpivotTable(data = mtcars)
html <- repr:::repr_html.htmlwidget(ptbl)
IRdisplay::display_html(html)
#!/bin/bash
set -e
R CMD INSTALL .
R --slave -e 'IRkernel::installspec()'
jupyter run --kernel=ir test.r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment