R語言
format
位於 utils
包(package)。 說明
設置無序(逐項列出)和有序(枚舉)列表的格式。
用法
formatUL(x, label = "*", offset = 0,
width = 0.9 * getOption("width"))
formatOL(x, type = "arabic", offset = 0, start = 1,
width = 0.9 * getOption("width"))
參數
x |
列表項的字符向量。 |
label |
用於標記項目的字符串。 |
offset |
給出列表偏移量(縮進)的非負整數。 |
width |
一個正整數,給出在輸出中換行的目標列。 |
type |
指定有序列表中標簽的 ‘type’ 的字符串。如果 |
start |
一個正整數,指定有序列表中第一項的起始編號。 |
值
帶有格式化條目的字符向量。
例子
## A simpler recipe.
x <- c("Mix dry ingredients thoroughly.",
"Pour in wet ingredients.",
"Mix for 10 minutes.",
"Bake for one hour at 300 degrees.")
## Format and output as an unordered list.
writeLines(formatUL(x))
## Format and output as an ordered list.
writeLines(formatOL(x))
## Ordered list using lower case roman numerals.
writeLines(formatOL(x, type = "i"))
## Ordered list using upper case letters and some offset.
writeLines(formatOL(x, type = "A", offset = 5))
也可以看看
formatDL
用於格式化說明列表。
相關用法
- R findLineNum 查找源代碼行的位置,或在那裏設置斷點
- R findCRANmirror 查找 CRAN 鏡像首選項
- R file_test 對文件進行 Shell 式測試
- R fix 修複對象
- R file.edit 編輯一個或多個文件
- R select.list 從列表中選擇項目
- R COMPILE 編譯用於 R 的文件
- R readRegistry 讀取 Windows 注冊表配置單元
- R browseVignettes 在 HTML 瀏覽器中列出暈影
- R hasName 檢查姓名
- R nsl 按主機名查找 IP 地址
- R edit 調用文本編輯器
- R create.post 準備電子郵件和帖子的輔助函數
- R hsearch-utils 幫助搜索實用程序
- R download.packages 從類似 CRAN 的存儲庫下載軟件包
- R DLL.version MS Windows 上的 DLL 版本信息
- R ls.str 列表對象及其結構
- R Rscript R 前端腳本
- R bug.report 發送錯誤報告
- R PkgUtils 用於構建和檢查附加包的實用程序
- R cite 引用參考書目條目
- R SweaveSyntConv 轉換 Sweave 語法
- R RSiteSearch 搜索文檔中的關鍵詞或短語
- R glob2rx 將通配符或通配符模式更改為正則表達式
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Format Unordered and Ordered Lists。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。