gpt4 book ai didi

html - 如何在 Jupyter (R) 中呈现 LaTeX/HTML?

转载 作者:太空狗 更新时间:2023-10-29 13:58:10 25 4
gpt4 key购买 nike

我刚开始使用 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。其他人可能知道 latex 。

# 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>")

enter image description here

关于html - 如何在 Jupyter (R) 中呈现 LaTeX/HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32703654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com