HTMLheader(tools)
HTMLheader()所属R语言包:tools
Generate a standard HTML header for R help
为R的帮助下生成一个标准的HTML头
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function generates the standard HTML header used on R help pages.
此功能产生R上的帮助页中使用标准的HTML头。
用法----------Usage----------
HTMLheader(title = "R", logo = TRUE, up = NULL,
top = file.path(Rhome, "doc/html/index.html"),
Rhome = "",
css = file.path(Rhome, "doc/html/R.css"),
headerTitle = paste("R:", title),
outputEncoding = "UTF-8")
参数----------Arguments----------
参数:title
The title to display and use in the HTML headers. Should have had any HTML escaping already done.
标题显示和使用的HTML头。应该有任何HTML转义已经完成。
参数:logo
Whether to display the R logo after the title.
是否显示标题后的R标志。
参数:up
Which page (if any) to link to on the “up” button.
哪页(如有)上的“向上”按钮链接。
参数:top
Which page (if any) to link to on the “top” button.
哪页(如有)连接上的“顶”按钮。
参数:Rhome
A relative path to the R home directory. See the "Details".
到R的主目录的相对路径。看到“详细资料”。
参数:css
The relative URL for the Cascading Style Sheet.
层叠样式表的相对URL。
参数:headerTitle
The title used in the headers.
在标题中使用的标题。
参数:outputEncoding
The declared encoding for the whole page.
整个页面的编码。
Details
详情----------Details----------
The up and top links should be relative to the current page. The Rhome path default works with dynamic help; for static help, a relative path (e.g. "../..") to it should be used.
up和top链接相对应的当前页。 Rhome路径默认工作动态帮助;为静态的帮助下,相对路径(如../..),它应该被用来。
值----------Value----------
A character vector containing the lines of an HTML header which can be used to start a page in the R help system.
字符的向量,这可以用来在R帮助系统启动页面的HTML头线。
举例----------Examples----------
cat(HTMLheader("This is a sample header"), sep="\n")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|