Skip to content
Prev 82071 / 398506 Next

How to catch value

You can have a look at
https://stat.ethz.ch/pipermail/r-help/2005-November/082060.html


There are at least 2 ways to solve your problem
First, you can also make use of the assign function
I refer here to R> ?assign

After editting par assing the value of par to the variable name "par" by
par<-edit(par)
assign("par",par, envir = .GlobalEnv)

Secondly, similar to assign, you can also use <<-
I refer here to R> help("<<-")
par<<-edit

Good luck,
Kristel
Chun-Ying Lee wrote:
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm