search for: env_

Displaying 4 results from an estimated 4 matches for "env_".

Did you mean: env
2002 May 16
0
(PR#1556)
lib.fixup My previous post mentions a problem encountered when calling ".Internal( lib.fixup..." in R1.5.0. I have since found a workaround. It's possible in R1.5.0 to set attributes of search path environments directly, like so: > env_ pos.to.env( 3) > attr( env, 'any.attr')_ 'any.value' > pos.to.env( 3) <environment: package:tcltk> attr(,"name") [1] "package:tcltk" attr(,"path") [1] "C:/R/rw1050/library/tcltk" attr(,"any.attr") [1] "any.value&quot...
2017 Jan 31
1
Migration from Win2K server AD to Linux Samba4 AD
Hello !! _PRODUCTION ENV_ - I currently using 2 Win2K AD servers, 1 Win2012 File Server and about 100 pc on the same domain (domain A) _TEST__ENV_ - I just created 2 Linux Debian8 Samba4 AD servers with a different domain (domain B) and I'm using 1 pc (joined to the domain B) to test the new environment. My problem...
2002 May 15
0
lib.fixup, .GlobalEnv, and R1.5.0 (PR#1556)
Full_Name: Mark Bravington Version: 1.5.0 OS: Windows 2000 Submission from: (NULL) (140.79.2.3) In R1.3.1, I used the following code inside a function to set a "path" attribute to .GlobalEnv: env_ pos.to.env( 1) attr( env, 'path')_ .Path # .Path is a named char vector of length 1 .Internal( lib.fixup( env, .GlobalEnv)) # adds the attribute And this works fine. But in R1.5.0, the same code (executed e.g. within a call to "local" from the command line) removes all the ob...
2011 Sep 20
2
Is it possible to pass a function argument from R to compiled code in C?
I have a function in R that takes another function as argument: f <- function(g, ...) { #g is expected to be a function } I want to see if there is a way to implement "f" in C and calling it from R using ".C" interface. I know that I can use function pointers for my C implementation, but I imagine it's going to be nearly impossible to pass a function from R to C. Are