当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 pretty()用法及代码示例


R 语言中的 pretty() 函数用于决定等距轮值的序列。

用法: pretty(x, n)

参数:
x:它被定义为矢量数据
n:结果向量的长度

返回:等长区间的数据向量

范例1:




# Create example vector
# Apply pretty function to vector
x <- 1:50                                 
pretty(x)                                     

输出:

[1]  0 10 20 30 40 50

范例2:


# Create example vector
x <- 1:50     
  
# Apply pretty function to vector                            
pretty(x, n = 10)                   

输出:

 
[1]  0  5 10 15 20 25 30 35 40 45 50

这里 n = 10 表示由十个区间组成的区间向量,即 n+1 个元素。

范例3:


# Create example vectors
x <- 1:50 
y <- 1:50   
  
# Create plot of two vectors                       
plot(x, y,        
     
     # Default axis labels                     
     main = " Axis Labels")             

输出:




相关用法


注:本文由纯净天空筛选整理自kaurbal1698大神的英文原创作品 Compute a Sequence of Equally Spaced Round values in R Programming – pretty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。