Tagged Questions
The apply tag has no wiki summary.
34
votes
4answers
2k views
Is R's apply family more than syntactic sugar
...regarding execution time and / or memory.
If this is not true, prove it with a code snippet. Note that speedup by vectorization does not count. The speedup most come from *apply (tapply, sapply ...
31
votes
10answers
13k views
How do I apply a diff patch on windows?
There are plenty of programs out there that can create a diff patch, but I'm having a heck of a time trying to apply one. I'm trying to distribute a patch, and I got a question from a user about how ...
17
votes
2answers
673 views
Pass in an array of Deferreds to $.when()
Here's an contrived example of what's going on: http://jsfiddle.net/adamjford/YNGcm/20/
HTML:
<a href="#">Click me!</a>
<div></div>
JavaScript:
function ...
14
votes
2answers
327 views
How can I call a javascript constructor using call or apply?
how could I generalise the function below to take N arguments? (Using call or apply?)
Is there a programmatic way to apply arguments to 'new'? I don't want the constructor to be treated like a ...
12
votes
3answers
592 views
R - loop over rows of dataframe applying function with if-statement
I'm new to R and I'm trying to sum 2 columns of a given dataframe, if both the elements to be summed satisfy a given condition. To make things clear, what I want to do is:
> ...
11
votes
4answers
269 views
Apply multiple functions to each row of a dataframe
Every time I think I understand about working with vectors, what appears to be a simple problem turns my head inside out. Lot's of reading and trying different examples hasn't helped on this occasion. ...
9
votes
1answer
233 views
This works in Chrome but not IE, why?
var shell = function (method) {
window[method].apply(null, Array.prototype.slice.call(arguments, 1));
};
shell('alert', 'monkey!');
9
votes
7answers
3k views
Java collection/map apply method equivalent?
I would like to apply a function to a Java collection, in this particular case a map. Is there a nice way to do this? I have a map and would like to just run trim() on all the values in the map and ...
8
votes
4answers
324 views
Is there a R function that applies a function to each pair of columns?
I often need to apply a function to each pair of columns in a dataframe/matrix and return the results in a matrix. Now I always write a loop to do this. For instance, to make a matrix containing the ...
7
votes
4answers
402 views
Why are loops slow in R?
I know that loops are slow in R, and that I should try to do things in a vectorized manner instead.
But, why? Why are loops slow and apply is fast? apply calls several sub-functions -- that doesn't ...
7
votes
5answers
307 views
R: specifying a string as an argument of a function that calls another function
This is a question regarding coding in R.
The example I provide is didactic. Suppose I have functions called 'func1' and 'func2', where each takes two arguments (let's say scalars). I want to ...
7
votes
5answers
251 views
Why doesn't (apply or [true false]) work in Clojure?
From what I understand about apply, it unpacks a list and turns the elements into arguments for a function.
I see that (apply + [1 2 3]) works as expected, i.e: it's equivalent to (+ 1 2 3).
Why ...
6
votes
2answers
160 views
Do the R parallel extensions break the `apply` metaphor?
Every time I see a question on parallel processing in R, it uses the foreach function. Since for loops are not very R-like, is there a parallel version of apply, and if so why isn't it more popular?
6
votes
3answers
160 views
How does one reduce a list of boolean values in Common Lisp?
Given a list of values, I want to reduce the list to T if all the elements are not NIL, NIL if not. This gives me an error:
(apply #'and (get-some-list))
As does this:
(reduce #'and ...
6
votes
2answers
3k views
R : remove columns from dataframe where ALL values are NA
I'm having some trouble with my huge data frame and couldn't really resolve that question myself:
The dataframe has some properties as columns and each row represents one data set. I've done some ...
6
votes
3answers
681 views
Row/column counter in 'apply' functions
What if one wants to apply a functon i.e. to each row of a matrix, but also wants to use as an argument for this function the number of that row. As an example, suppose you wanted to get the n-th root ...
6
votes
2answers
2k views
R: Applying pnorm to columns of a data frame
I'm trying to normalize some data which I have in a data frame. I want to take each value and run it through the pnorm function along with the mean and standard deviation of the column the value lives ...
5
votes
2answers
119 views
Why can't I omit “apply” in this.apply(_) in Scala?
Observe the following code
trait Example {
type O
def apply(o: O)
def f(o: O) = this.apply(o)
}
which compiles fine in Scala. I would expect that I can leave out apply as usual, writing def ...
5
votes
5answers
100 views
How do I apply a multi-parameter function in R?
I have the following data frame and vector.
> y
v1 v2 v3
1 1 6 43
2 4 7 5
3 0 2 32
> v
[1] 1 2 3
I want to apply the following function to every ROW in that data frame such that v ...
5
votes
1answer
76 views
Is there something like JavaScript's apply function in PHP?
In JavaScript, I can use apply to pass an array as arguments to a function:
var f = function (n,m) {},
args = [1,2];
f.apply(null, args);
I now need to do something similar in PHP i.e. pass an ...
5
votes
4answers
200 views
How to improve this Algorithm?
R Version 2.11.1 32-bit on Windows 7
(Thanks for the answers! I finally use the package plyr and it really helps!)
I get the data train.txt as below:
USER_A USER_B ACTION
1 7 0
1 ...
5
votes
3answers
684 views
Using Function.prototype.apply to set javascript callback scope
It's frustrating to have to manually set the scope of an object every time I declare a callback in JavaScript, but it's a fact of life. I wondered if I could do it by passing [mycallback].apply as the ...
5
votes
4answers
466 views
multiply each cell of a data.frame with it's weight
What I want to do is embarrassing simple - nevertheless I fail.
I have a data.frame with "characters" and "numerics". One of the columns of the data.frame represents the weights.
I want to multiply ...
5
votes
3answers
589 views
Apply a list of n functions to each row of a dataframe?
I have a list of functions
funs <- list(fn1 = function(x) x^2,
fn2 = function(x) x^3,
fn3 = function(x) sin(x),
fn4 = function(x) x+1)
#in ...
4
votes
1answer
66 views
Trying to understand underscore.js source - call and apply used in library
In Jeremy Ashkenas's awesome Underscore.js library, I tried to understand one thing about the source file. I do not understand this:
args = slice.call(arguments, 2);
Note: here slice is a local ...
4
votes
1answer
55 views
apply function in JavaScript
I'm learning JavaScript and I'm currently trying to figure out why (in Spidermonkey)
[].concat.apply([1], [[2]])
returns the expected [1, 2], but
Array.concat.apply([1], [[2]])
returns [2] ...
4
votes
2answers
41 views
How to factorize specific columns in a data.frame in R using apply
I have a data.frame called mydata and a vector ids containing indices of the columns in the data.frame that I would like to convert to factors. Now the following code solves the problem
for(i in ids) ...
4
votes
1answer
57 views
Applying apply in Scheme
What am I missing here? I was playing with apply in Scheme, and wrote:
(apply apply '(+ (1 2 3)))
The way I understand it, the first apply should do:
(apply + '(1 2 3))
and the second should ...
4
votes
2answers
80 views
How to paste a string on each element of a vector of strings using apply in R?
I have a vector of strings.
d <- c("Mon","Tues","Wednes","Thurs","Fri","Satur","Sun")
for which I want to paste the string "day" on each element of the vector in a way similar to this.
week ...
4
votes
3answers
60 views
Array Semi-Flattening
Want to convert this:
[["1", "2", "3"], ["4", "5", "6"]]
to this:
["1", "2", "3"], ["4", "5", "6"]
to be passed into Array.product(), and the first array can contain an unknown number of other ...
4
votes
4answers
141 views
How do I use “implicit” as apply() parameter?
I want to do this:
abstract class Context {
def getInt(id: Int): Int
}
abstract class Dependency[+T]
(val name: String, val id: Int)
extends Function1[Context,T]
class IntDependency(name: ...
4
votes
2answers
592 views
How can I generate by-group summary statistics if my grouping variable is a factor?
Suppose I wanted to get some summary statistics on the dataset mtcars (part of base R version 2.12.1).
Below, I group the cars according to the number of engine cylinders they have and take the ...
4
votes
4answers
2k views
Why doesn't function.apply() work across document boundaries in IE?
I'm seeing some strange behavior in IE trying to call functions in another page via function.apply().
Here's a simple test case:
test1.html:
<HTML>
<HEAD>
<script ...
4
votes
2answers
5k views
How do I wrap a function in Javascript?
I'm writing a global error handling "module" for one of my applications.
One of the features I want to have is to be able to easily wrap a function with a Try{} Catch{} block, so that all calls to ...
3
votes
1answer
109 views
Rolling apply to subset of a vector
I want to apply a function to progressive subsets of a vector in R. I have looked at what i could find, and the apply and friends aren't quite there, and rollapply does not work on straight vectors, ...
3
votes
1answer
555 views
R apply function with multiple parameters
I have a function f(var1, var2) in R. Suppose we set var2 = 1 and now I want to apply the function f() to the list L. Basically I want to get a new list L* with the outputs
...
3
votes
1answer
193 views
Anova, for loop to apply function
>str(set)
'data.frame': 1000 obs. of 6 variables:
$ ID : Factor ..
$ a : Factor ..
$ b: Factor ..
$ c: Factor ..
$ dat : num ..
$ contrasts : Ord.factor ..
>X
[1] "a" "b" "c"
...
3
votes
1answer
83 views
How to improve this code for getting pairwise?
It is a question build upon the previous question (http://stackoverflow.com/questions/6538448/r-how-to-write-a-loop-to-get-a-matrix).
It is different from the previous one, as more details is ...
3
votes
2answers
83 views
Finding the number of words in each row
Let's say that I want to find the number of words in each row of a data frame.
So in the following example, I want to find that the first value in column one
has 3 words, the second value has 4 words, ...
3
votes
4answers
202 views
Performing an if statement on each row in R
I am reading in a csv file into R that looks like this:
3,3
3,2
3,3
3,3
3,3
3,3
2,3
1,2
2,2
3,3
I want to assign a number to each of the 9 unique possibilities that my data can be (3 and 3 is 9, 3 ...
3
votes
3answers
93 views
CSS for mail doesn't apply?
I have no idea what's going on now. I threw together a simple page with very simple CSS. I used tables cause i know you can't use div elements like normal for emails. So after viewing it in my ...
3
votes
5answers
168 views
In Javascript is there equivalent to .apply that doesn't change the value of this?
Seems easy enough, i want to call a function with array of arguments. Sure, i can say func.apply(this, ['some', 'arguments']); but that will change the value of this inside func. Any idea how to do ...
3
votes
3answers
147 views
Apply GBSVolatility to each row
I have a rather simple question but unfortunately just cannot get to a result:
I would like to apply the GBSVolatility function to each row of my data.frame.
I did the following:
> vol <- ...
3
votes
1answer
597 views
Quickly apply xts vector operations across wide zoo objects in R
This is really an extension of my question yesterday where I learned about apply.weekly. This works great, but I want to do this over wide zoo objects. If I use apply.weekly on a wide zoo it sums the ...
3
votes
2answers
142 views
which list element is being processed when using snowfall::sfLapply?
Assume we have a list (mylist) that is use as input object for a lapply function. Is there a way to know which element in mylist is being evaluated? The method should work on lapply and ...
3
votes
3answers
209 views
Run time - using apply functions
I have two apply functions excecuting the average and standard deviation across the first two dimensions on a large three dimentional array (437216,8,3). It takes 16 minutes to complete on Rx32. It's ...
3
votes
3answers
358 views
R: apply over two data.frames
I'm using R, and I have two data.frames, A and B. They both have 6 rows, but A has 25000 columns (genes), and B has 30 columns. I'd like to apply a function with two arguments f(x,y) where x is every ...
3
votes
2answers
185 views
How to write a JS function that accepts and “forwards” variable number of parameters?
How do I write a Javascript function that accepts a variable number of parameters, and forwards all of those parameters to other anonymous functions?
For example, consider the scenario of a method ...
3
votes
5answers
731 views
JavaScript: Problem with a ActiveX-Object and the apply()-Function
i have an ActiveX Object (Master) and would like to invoke functions dynamically on it. To do this i use the apply() Function. But sadly the InternetExplorer tells me something along the lines of: ...
3
votes
5answers
418 views
How can I construct an object using an array of values for parameters, rather than listing them out, in JavaScript?
Is this possible? I am creating a single base factory function to drive factories of different types (but have some similarities) and I want to be able to pass arguments as an array to the base ...