I have a function to create a quick and basic cable:
quick_kable <-function(data, ...){
kbl(data, ...) %>% kable_styling()
}
And whenever I call this function:
quick_kable(contents(dat))
It returns this error:
Error in kbl(data, ...) : could not find function "kbl"
I already installed the package kableExtra
, so I don't know what else I could be doing wrong.
Any ideas?