0
votes
0answers
47 views

Temporary R minimal environment

I have 100+ Linux servers that I want to run R code on for analysis or whatever. Installing R on each and every one of them I think is unfeasible. So I am wondering if it's possible to push a ...
1
vote
1answer
36 views

how to pass a variable to lm within a function in R

Here is a (non)working example of how I would like to do things. The restriction is that all this has to happen within a function and that K should not be appended to x. What's the right way to do ...
1
vote
0answers
53 views

Call object from function environment in R

I have a function similar to this one: function.mean.prod<-function(my.df,my.title){ tmp.df<-data.frame(Year=1901:2099,Productivity=NA) for(i in ...
0
votes
2answers
59 views

Dynamically assigning calculation results in R

I'm in my first week programming in R and while I've made much progress on solving specific issues, I am in need for advice on a larger scale. I have a directory full of data files in CSV format. The ...
2
votes
2answers
60 views

Get the attribute of a packaged function from within itself

Suppose we have this functions in a R package. prova <- function() { print(attr(prova, 'myattr')) print(myattr(prova)) invisible(TRUE) } 'myattr<-' <- function(x, value) { attr(x, ...
3
votes
2answers
66 views

get xts objects from within an environment

I have stored xts objects inside an environment. Can I subset these objects while they are stored in an environment, i.e. act upon them "in-place"? Can I extract these objects by referring to their ...
0
votes
1answer
31 views

When/how/where is parent.frame in a default argument interpreted?

Truth be told, I'm just being lazy here, but perhaps someone could someday profit from the answer being here. Say I define a function like: fn<-function(envir=parent.frame()) { #do something ...
1
vote
1answer
88 views

Wrapping data.table using an evaluated call in a package

I'm trying to write a simple wrapper around data.table for split-apply-combine use (like aggregate, ddply etc.) in order to gain from data.table's speed but not use its data structures or syntax. I ...
1
vote
2answers
69 views

Trouble passing on an argument to function within own function

I am writing a function in which I want to pass some arguments to the crrstep-function ('crrstep' package), but I encountered a problem: somehow the argument 'event' in my function is not recognized ...
8
votes
1answer
135 views

create a formula in a data.table environment in R

I would like to run a regression within a data.table. The formula needs to be constructed dynamically. I have tried the following method: x = data.table(a=1:20, b=20:1, id=1:5) > ...
2
votes
1answer
45 views

how to compare environment for equality in R

I would like to check if the current environment is the global environment in R. However, direct comparison doesn't seem to work with evironments. What is the best way to do this? #doesn't work ...
3
votes
1answer
62 views

sys.frame, sys.nframe, etc. in R

could someone please explain to me what these various environment functions do specifically? ie which one returns what frame? i am thoroughly confused after reading the documentation ...
0
votes
0answers
157 views

Tutorials to handle data and data structures in R [closed]

I'm quite new to R and on of my biggest challenges is still how to properly handle my data in R. Until now I just stored tables I had outside of R (e.g. csv's) as data.frames in R (this was most ...
6
votes
2answers
173 views

update() inside a function only searches the global environment?

I tried to write a wrapper function to do likelihood ratio tests in batches. I tried to include update() to update the initial model. However, it seems that instead of looking for objects inside the ...
7
votes
1answer
226 views

Customizing the ESS environment for R

I am trying to optimize my ESS - R environment. So far I make use of the r-autoyas, I set intendation and stuff following style guides, in the mini-buffer there are eldoc hints for function arguments, ...
4
votes
2answers
129 views

How to populate an environment in R

I'm using the IMIS package (Incremental Mixture Importance Sampling) to estimate parameters. Unfortunately, it's written to look for functions likelihood, sample.prior, and prior in the environment ...
3
votes
2answers
48 views

How do I query for values of symbols in a closure in R?

How can I query the value of x for foo in the R code below? make.foo <- function() { x <- 123 function() x * 3 } foo <- make.foo() # now get foo's x
3
votes
2answers
340 views

How can I make my R session vanilla?

This is a follow up for clarification of a previous question, How can I ensure a consistent R environment among different users on the same server? I'd like to enter a "vanilla" R session from within ...
3
votes
1answer
70 views

How can I ensure a consistent R environment among different users on the same server?

I am writing a protocol for a reproducible analysis using an in-house package "MyPKG". Each user will supply their own input files; other than the inputs, the analyses should be run under the same ...
0
votes
0answers
132 views

R specify function environment

I have a question about function environments in the R language. I know that everytime a function is called in R, a new environment E is created in which the function body is executed. The parent link ...
0
votes
2answers
430 views

How to set R environment in /etc/profile?

my os is debian6,there is a libR.pc after i compile to install R root@debian:/home/tiger# cat /home/tiger/R-2.15.1/lib/pkgconfig/libR.pc rhome=/home/tiger/R-2.15.1/lib/R rlibdir=${rhome}/lib ...
1
vote
2answers
164 views

Using quantmod periodReturn with an index of variables in the environment

I've written the following function to autmoatically assess the effect of missing the best/worst days of trading ina given stock. Unfortunately, one part of the function seems to fail: ...
1
vote
2answers
132 views

python rpy2 module: refresh global R environment

The documentation for rpy2 states that the robjects.r object gives access to an R global environment. Is there a way to "refresh" this global environment to its initial state? I would like to be ...
3
votes
2answers
509 views

How to search an environment using ls() inside a function?

I want to find a set of functions and save them, because I want to send them to a remote server in an Rdata file, and I don't want to install a new package on the server. Although I am getting an ...
10
votes
2answers
448 views

How are environments, (en)closures, and frames related?

I want to better understand how environments, closures, and frames are related. I understand function closures contain an environment, environments contain a frame and an enclosure, and frames ...
13
votes
1answer
726 views

What is the difference between parent.frame() and parent.env() in R; how do they differ in call by reference?

It would be helpful if someone can illustrate this with a simple example? Also, where would it be useful to use parent.frame() instead of parent.env() and vice versa.
4
votes
2answers
208 views

saving and loading all environments in R

I am developing a package to perform distributed computing in R (rmr under the RHadoop project on github). I am trying to make things as transparent as possible to the user and simply have the ...
5
votes
2answers
172 views

Assigning list attributes in an environment

The title is the self-contained question. An example clarifies it: Consider x=list(a=1, b="name") f <- function(){ assign('y[["d"]]', FALSE, parent.frame() ) } g <- function(y) {f(); ...
4
votes
2answers
970 views

Remove objects in .GlobalEnv from within a function

I would like to create a function (CleanEnvir) which basically calls remove/rm and which removes certain objects from .GlobalEnv. CleanEnvir <- function(pattern = "tmp"){ rm(list = ...
6
votes
4answers
1k views

Scoping and functions in R 2.11.1 : What's going wrong?

This question comes from a range of other questions that all deal with essentially the same problem. For some strange reason, using a function within another function sometimes fails in the sense that ...
0
votes
3answers
1k views

How can I use assign to change variables within a dataframe in R?

I tried to do something like this: x <- data.frame(1:20) attach(x) assign("x2",1:20,pos="x") However, x$x2 gives me NULL. With x2 I get what I want but it is not part of the data.frame. ...
1
vote
2answers
217 views

values not being copied to the next (local) environment?

Consider this output from browser() that is located inside calcDistance: Called from: calcDistance(object = rst, xy = xy[[i]][j, ], effect.distance = effect.distance) Browse[1]> ls.str() ...
3
votes
3answers
772 views

In R, how do you evaluate … in the calling function?

If I want to know what is stored in a ... argument within an R function, I can simply convert it to be a list, like so foo <- function(...) { dots <- list(...) print(dots) } foo(x = 1, 2, ...
1
vote
2answers
202 views

What class of objects are in the environment ? (R)

I wish to know what type of objects I've got in my environment. I can show who is there like this: ls() But running something like sapply(ls(), class) Would (obviously) not tell us what type ...
2
votes
2answers
566 views

ddply run in a function looks in the environment outside the function?

I'm trying to write a function to do some often repeated analysis, and one part of this is to count the number of groups and number of members within each group, so ddply to the rescue !, however, my ...