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


R ggplot2 resolution 計算數值向量的“分辨率”


分辨率是相鄰值之間的最小非零距離。如果隻有一個唯一值,則分辨率定義為 1。如果x是整數向量,則假設它代表離散變量,分辨率為1。

用法

resolution(x, zero = TRUE)

參數

x

數值向量

zero

分辨率的計算中是否應該自動包含零值

例子

resolution(1:10)
#> [1] 1
resolution((1:10) - 0.5)
#> [1] 0.5
resolution((1:10) - 0.5, FALSE)
#> [1] 1

# Note the difference between numeric and integer vectors
resolution(c(2, 10, 20, 50))
#> [1] 2
resolution(c(2L, 10L, 20L, 50L))
#> [1] 1

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Compute the "resolution" of a numeric vector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。