library(knitr, verbose = F)
## 
## Attaching package: 'knitr'
## 
## The following object is masked _by_ '.GlobalEnv':
## 
##     stitch
opts_chunk$set(comment = NA, results = "asis", comment = NA, tidy = F)

library(DT)
library(rCharts) # must the dev versioin installed with install_github('rCharts', 'ramnathv', ref = 'dev')
library(curl)
read.csv(curl("https://gist.githubusercontent.com/sfsheath/a076a4ae2e54a17088d2/raw/b86dcb8fa6fb8908cda3a5cb3a23f5578687de9f/ramphs.csv")) -> ramphs.csv
 X <- rPlot(extmajor ~ extminor, data = ramphs.csv[,c("extmajor","extminor")], type = "point")
X$show('inline', include_assets = TRUE)

Try a datatable

datatable(ramphs)