如何在Jupyter(R)中渲染LaTeX / HTML?

前端之家收集整理的这篇文章主要介绍了如何在Jupyter(R)中渲染LaTeX / HTML?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚开始使用Jupyter和R,我想知道是否有一种很好的方式来显示 HTML或LaTeX输出.

这是我希望工作的一些示例代码

library(xtable)
x <- runif(500,1,50)
y <- x + runif(500,-5,5)
model <- lm(y~x)
print(xtable(model),type = 'html')

它只是将其显示为纯文本,而不是呈现HTML.有没有办法改变这种行为?

解决方法

repr(用于设置选项)和IRdisplay的组合将适用于HTML.其他人可能知道乳胶.
# Cell 1 ------------------------------------------------------------------

library(xtable)
library(IRdisplay)
library(repr)

data(tli)
tli.table <- xtable(tli[1:20,])
digits(tli.table) <- matrix( 0:4,nrow = 20,ncol = ncol(tli)+1 )

options(repr.vector.quote=FALSE)

display_html(paste(capture.output(print(head(tli.table),type = 'html')),collapse="",sep=""))


# Cell 2 ------------------------------------------------------------------

display_html("<span style='color:red; float:right'>hello</span>")

# Cell 3 ------------------------------------------------------------------

display_markdown("[this](http://google.com)")

# Cell 4 ------------------------------------------------------------------

display_png(file="shovel-512.png")

# Cell 5 ------------------------------------------------------------------

display_html("<table style='width:20%;border:1px solid blue'><tr><td style='text-align:right'>cell 1</td></tr></table>")

原文链接:https://www.f2er.com/html/226111.html

猜你在找的HTML相关文章