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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。