我一直在尝试使用RStudio和knitr来创建博客帖子。我已经按照Jeff Horner先前在这里描述的tumblr方法(Part I)和这里(Part II)。
简单来说,这是tumblr的自定义CSS,请确保启用html编辑器,然后使用 knitr 和 markdown 包创建.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文件只是在我将其加载到 tumblr 或 wordpress 博客时创建了一个空白帖子。我想我之前尝试过 blogger ,但我不记得我是否使用了相同的步骤。
我正在使用最新的RStudio和软件包版本。
因此...
我知道RPubs - 它很棒,但我发现教学/阅读的风格和页面宽度都很差。
非常感谢