ls()
R語言中的函數用於列出工作目錄中存在的所有對象的名稱。
用法: ls()
參數:
這個函數不需要參數
範例1:
# R program to list all the object names
# Creating a vector
vec <- c(1, 2, 3)
# Creating a matrix
mat <- matrix(c(1:4), 2)
# Creating an array
arr <- array(c(1:4), 2)
# Calling ls() Function
ls()
輸出:
[1] "arr" "mat" "vec"
範例2:
# R program to list all the object names
# Creating a list
list1 = list("Numbers" = c(1:3),
"Characters" = c(1:5))
# Creating a Data frame
df = data.frame("Numbers" = c(1:3),
"Characters" = c(4:6))
# Calling ls() Function
ls()
輸出:
[1] "df" "list1"
相關用法
- R語言 setdiff()用法及代碼示例
- R語言 intersect()用法及代碼示例
- R語言 setequal()用法及代碼示例
- R語言 is.element()用法及代碼示例
- R語言 union()用法及代碼示例
- R語言 sum()用法及代碼示例
- R語言 combine()用法及代碼示例
- R語言 rm()用法及代碼示例
- R語言 identical()用法及代碼示例
- R語言 as.list()用法及代碼示例
- R語言 is.list()用法及代碼示例
- R語言 search()用法及代碼示例
- R語言 colors()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 List all the Objects present in the Current Working Directory in R Programming – ls() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。