1

我一直在尝试使用 RStudio 和 knitr 来创建博客文章。我遵循了 Jeff Horner 之前在此处(第 I 部分)和此处(第 II 部分)为 tumblr 描述的方法。

简而言之,这是 tumblr 的自定义 CSS,确保启用 html 编辑器,然后使用knitrmarkdown包创建 .md 和 html 文件。

library(knitr)
knit('tut5.Rmd')
library(markdown)
markdownToHTML("tut5.md", "tut5.html", fragment.only = TRUE)

这是我的 html 示例:

<p><FONT style="font-size:15px"></p>
<h2>Model Formulae and Linear Models</h2>
<p>In many ways the R language is similar to other programming languages (Matlab, Python, Scala) but it has a few unique features due to its focus on statistics. Amongst these model formulae are a useful shorthand for representing the relations between data variables - in particular to specify linear models (e.g. regression and multiple regression)- and they appear in both statistical and plotting expressions.</p>

遗憾的是,当我将这个 html 文件加载到tumblrwordpress博客中时,我发现它只是创建了一个空白帖子。我想我不久前也尝试过博客,但我不记得我是否使用了相同的步骤。

截至今天,我正在使用最新的 RStudio 和软件包版本。

所以...

  1. 有没有其他人能够成功地管理这些(或类似)网站。
  2. 如果是这样,他们有不同的方法吗?
  3. 还是我做错了什么?

我知道 RPubs——它很棒,但我发现它的风格,尤其是页面宽度不适合教学/阅读。

非常感谢

4

0 回答 0