作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我刚开始使用 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>")
关于html - 如何在 Jupyter (R) 中呈现 LaTeX/HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32703654/
我是一名优秀的程序员,十分优秀!