Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
584 views
in Technique[技术] by (71.8m points)

command ls with pattern in a function is not working in R

I am trying following function:

srch = function(srchstr){
    print(ls(pattern=srchstr))
}

While following works:

ls(pattern='ddf')
[1] "ddf"         

Calling the function produces following output:

srch('ddf')
character(0)

I tried following methods:

ss = srch('ddf')
character(0)

ss
character(0)

print(ss)
character(0)

unlist(ss)
character(0)

sapply(ss, print)
named list()

sapply(ss, cat)
named list()

cat(ss)

'cat(ss)' simply gives no output!

Why is this happening & how can this be corrected?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try to look in the .GlobalEnv:

srch = function(srchstr){
    print(ls(pattern=srchstr, envir = .GlobalEnv))
}

edit joran was faster...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...