影响交互显示的选项。请参阅 pillar::pillar_options 了解影响控制台显示的选项,以及 cli::num_ansi_colors()
了解通过 ANSI 序列(如 [3m[38;5;246m[39m[23m
)启用和禁用彩色输出。
细节
这些选项可以通过 options()
设置并通过 getOption()
查询。为此,请在选项名称中添加 tibble.
前缀(包名称和点)。示例:对于选项 foo
,使用 options(tibble.foo = value)
设置它,使用 getOption("tibble.foo")
检索当前值。选项值 NULL
表示使用默认值。
例子
# 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 tibble tibble 构建 DataFrame 架
- R tibble tribble 逐行小标题创建
- R tibble char 设置字符向量格式
- R tibble frame_matrix 逐行矩阵创建
- R tibble num 设置数值向量的格式
- R tibble rownames 用于处理行名称的工具
- R tibble enframe 将向量转换为数据帧,反之亦然
- R tibble add_row 将行添加到 DataFrame
- R tibble as_tibble 将列表、矩阵等强制转换为 DataFrame
- R tibble subsetting 子集化标题
- R tibble add_column 将列添加到 DataFrame
- R tibble lst 建立一个清单
- R tibble formatting 打印小标题
- R tibble new_tibble Tibble 构造函数和验证器
- R tidyr separate_rows 将折叠的列分成多行
- R tidyr extract 使用正则表达式组将字符列提取为多列
- R tidyr chop 砍伐和砍伐
- R tidyr pivot_longer_spec 使用规范将数据从宽转为长
- R tidyr unnest_longer 将列表列取消嵌套到行中
- R tidyr uncount “计数” DataFrame
- R tidyr cms_patient_experience 来自医疗保险和医疗补助服务中心的数据
- R tidyr pivot_wider_spec 使用规范将数据从长轴转向宽轴
- R tidyverse tidyverse_update 更新 tidyverse 软件包
- R tidyr replace_na 将 NA 替换为指定值
- R tidyr unnest_wider 将列表列取消嵌套到列中
注:本文由纯净天空筛选整理自Kirill Müller等大神的英文原创作品 Package options。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。