I just started using Jupyter with R, and I\'m wondering if there\'s a good way to display HTML or LaTeX output.
Here\'s some example code that I wish worked:
I found a simpler answer, for the initial, simple use case.
If you call xtable without wrapping it in a call to print, then it totally works. E.g.,
library(xtable) data(cars) model <- lm(speed ~ ., data = cars) xtable(model)