Code
library(tidyverse)
library(DT)
Bonds <- read.csv(url("https://raw.githubusercontent.com/robertwwalker/DADMStuff/master/BondFunds.csv"))
Bonds %>%
mutate(Risk = as.factor(Risk), Fees = as.factor(Fees), Type = as.factor(Type)) %>%
datatable(filter = "top", options = list(pageLength = 10, autoWidth = TRUE))