當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R tibble tibble_options 封裝選項


影響交互顯示的選項。請參閱 pillar::pillar_options 了解影響控製台顯示的選項,以及 cli::num_ansi_colors() 了解通過 ANSI 序列(如 [3m[38;5;246m[39m[23m )啟用和禁用彩色輸出。

用法

tibble_options

細節

這些選項可以通過 options() 設置並通過 getOption() 查詢。為此,請在選項名稱中添加 tibble. 前綴(包名稱和點)。示例:對於選項 foo ,使用 options(tibble.foo = value) 設置它,使用 getOption("tibble.foo") 檢索當前值。選項值 NULL 表示使用默認值。

tibble 包的選項

  • view_max :如果輸入不是數據幀,則 view() 顯示的最大行數,傳遞給 head() 。默認值:1000

例子

# Default setting:
getOption("tibble.view_max")
#> NULL

# Change for the duration of the session:
old <- options(tibble.view_max = 100)

# view() would show only 100 rows e.g. for a lazy data frame

# Change back to the original value:
options(old)

# Local scope:
local({
  rlang::local_options(tibble.view_max = 100)
  # view() would show only 100 rows e.g. for a lazy data frame
})
# view() would show the default 1000 rows e.g. for a lazy data frame
源代碼:R/options.R

相關用法


注:本文由純淨天空篩選整理自Kirill Müller等大神的英文原創作品 Package options。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。