pander returns markdown (and is used extensively with knitr to display rich tables), this should be displayed as markdown to be rendered in the notebook:
df <- data.frame(a=1:8, b=factor(c(0,1,0,1,0,1,0,1), levels=c(0,1), labels=c("a", "b")) )
pander(df %>% t.test(a~b, data = .) %>% tidy())
pander returns markdown (and is used extensively with knitr to display rich tables), this should be displayed as markdown to be rendered in the notebook: