Hey there,
When I call summary(mydataset) in server.R, it prints out a summary table of the dataset. However, when I call describe(mydataset), which is a function from the Hmisc package, I receive an error stating "no applicable method for 'xtable' applied to an object of class "describe"."
I verified that the class of the object mydataset is data.frame. Is this an issue with Shiny or just R in general? If I call describe(mydataset) from the console, it runs perfectly fine, which leads me to think it's something to do with Shiny.
Thank you!