Please note that help("<<-") says:

"The operators '<<-' and '->>' cause a search to made through the
     environment for an existing definition of the variable being
     assigned.  If such a variable is found (and its binding is not
     locked) then its value is redefined, otherwise assignment takes
     place in the global environment."

Thus, if you really want to make sure to assign it to the global
environment you should do:

  assign("b", value, envir=globalenv())

/Henrik

On 12/14/06, Rainer M Krug <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Hi all,
> >
> > Say I have created an object b in my function
> >
> > myfunc <- function() b <- 34
>
> myfunc <- function() b <<- 34
>                       ---------
>
> Rainer
>
> >
> > How can I make b an object in the Global environment and not just in the
> > environment of myfunc?
> >
> > Thanks,
> >
> > Tim
> >
> > ______________________________________________
> > [email protected] mailing list
> > https://stat.ethz.ch/mailman/listinfo/r-help
> > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> > and provide commented, minimal, self-contained, reproducible code.
>
>
> --
> Rainer M. Krug, Dipl. Phys. (Germany), MSc Conservation
> Biology (UCT)
>
> Department of Conservation Ecology and Entomology
> University of Stellenbosch
> Matieland 7602
> South Africa
>
> Tel:            +27 - (0)72 808 2975 (w)
> Fax:            +27 - (0)86 516 2782
> Fax:            +27 - (0)21 808 3304 (w)
> Cell:           +27 - (0)83 9479 042
>
> email:  [EMAIL PROTECTED]
>         [EMAIL PROTECTED]
>
> ______________________________________________
> [email protected] mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to