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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。