In [tag:R] this function returns a vector or array or list of values obtained by applying a function to margins or dimensions of an array or matrix. `apply` has advantages over explicit for loops in terms of code simplicity and speed.

learn more… | top users | synonyms

0
votes
0answers
19 views

operating on pairs of elements in a data frame

I have two data frames, x and weights, in which columns are paired. Here are example data frames: x = read.table(text = " yr1 yr2 yr3 yr4 10 15 6 8 10 20 30 NA NA 5 ...
0
votes
1answer
23 views

Parsing text file of one line JSON objects using RJSONIO

What I want: I would like to parse a text file of the form {"business_id": "rncjoVoEFUJGCUoC1JgnUA", "full_address": "8466 W Peoria Ave\nSte 6\nPeoria, AZ 85345", "open": true, "categories": ...
3
votes
3answers
79 views

Replacing nested loop in R

I am very new to R and searched about this on forums but couldn't get a close enough solution for this. I am trying to do a mapping between the ip address & corresponding geo locations. I have 2 ...
0
votes
1answer
36 views

rolling computations in xts by month part2

I want to calculate the VaR at the end of a month with the historical method. My time series will start at the beginning of 2000 until now. The calculation should start lets say in 2005 to have enough ...
1
vote
3answers
29 views

Finding proportions based on data.frame subsets

I have a set of counts from data with three dimensions: df <- data.frame(type = c("A", "B", "B", "A", "A", "C", "B", "C"), group = c("Tp", "Tp", "Tp", "Tp", "Fc", "Fc", "Fc", "Fc"), size = ...
0
votes
0answers
25 views

Applying Ext JS on existing datagrid in jsp for sorting

I have a Java EE web application and I'm using Servlets and JSP pages in that web application. Datagrids are already available in JSP pages. Can I implement Ext JS sorting concept in that existing ...
0
votes
1answer
31 views

Use ant <apply> to run alfresco-mmt on a set of modules

At the moment, our customization for Alfresco 3.4.x includes six AMP files, the removal of the internal log4j jar, the patching of a couple of jars to correct a bug in CIFS implementation, and a dozen ...
1
vote
2answers
44 views

Entity Framework and CROSS/OUTER APPLY

I want to create some test cases for Entity Framework queries that surely generate SQL commands that contain CROSS APPLY or OUTER APPLY operators. Could someone show typical scenarios where these ...
-1
votes
3answers
95 views

Speed up R loop [duplicate]

Speeding up loops in R can easily be done using a function from the apply family. How can I use an apply function in the code below to speed it up? Note that within the loop, at each iteration, one ...
0
votes
2answers
56 views

If statement in user defined function within apply in R

Forgive me if this is a blatantly obvious question, I am a beginner R user eager to learn. I have a data frame of 4 columns with roughly 1.5 million rows containing coordinate information where each ...
2
votes
2answers
46 views

Perform numerical operation in subset of IDs and return the results in the same data frame

I have a large dataset consisting of longitudinal measurements in various subjects (IDs) and some variables lets say: test.df <- data.frame(id=c(rep("A", 50),rep("B", 50)), x1=rnorm(100), ...
1
vote
1answer
17 views

Prototype function polluting JavaScript array

I'm working with an API that can accept multiple arrays in which I'm using apply() to pass the arrays, but the array contains a prototype function that I cannot seem to remove from the individual ...
0
votes
0answers
14 views

Calculating residual values columns for psychometric evaluation

I wish to calculate residuals over a range of columns and save the results into a new column. For instance in the mtcars data frame. I wish to regress the product of multiple columns over the columns ...
1
vote
2answers
75 views

Pandas: How to use apply function to multiple columns

I have some problems with the Pandas apply function, when using multiple columns with the following dataframe df = DataFrame ({'a' : np.random.randn(6), 'b' : ['foo', 'bar'] * 3, ...
0
votes
1answer
30 views

Understanding how to use “apply” with “boot” and “boot.ci” in R

I have a data frame and would like to apply a function each column using the boot function. I also would like to get the confidence intervals on the applied function using boot.ci. I have been able to ...
1
vote
2answers
56 views

using apply with assign in R

Consider the following example: Vars <- c("car","bike","lorry") Dat <- c(10,20,22) for (i in 1:length(Vars)){ assign(Vars[i],Dat[i]) } Here, I would like to generate three variables in the ...
0
votes
2answers
51 views

Apply and keyword arguments in lisp

I can use keyword parameters in LISP (member 'a '(a b c) :test #'eq) However, when I tried to use apply to invoke member method (apply #'member 'a '(a b c) :test #'eq) I have error message as ...
2
votes
1answer
38 views

skipping NULL output in apply

When using apply in R, is there some way to have it skip over vector elements that are NULL, such that when f(x2,y2) is undefined apply(x,1,f,y) returns c(f(x1,y1),f(x1,y2),f(x2,y2)) rather than ...
-1
votes
1answer
40 views

Count function for combinations of repeated observations and factors in a dataframe within and across time

Suppose I have data of the following type: df <- data.frame(student = c("S1", "S2", "S3", "S4", "S5", "S2", "S6", "S1", "S7", "S8"), factor = c("A", "A", "A", "A", "A", "B", "B", ...
0
votes
1answer
38 views

R - using column name as argument for function inside an apply/colwise function

I have built a function that determines bins for numeric columns and puts the output into the workspace, but I'd like to be able to apply this to a whole data.frame with either an apply or colwise ...
0
votes
0answers
31 views

Create diff patches in java

honorable developers! Could you say, is there exist a java-library, that allow to create diff-patches, preferably from jar-files and apply them to those jar-files? Maybe, somebody has an article ...
0
votes
0answers
24 views

ffrowapply, additional arguments

I am having trouble understanding how to pass additional arguments to ffrowapply My function is Calcuation( mcmc, mod, type, covar) If I remove the last 3 arguments ffrowapply works: ...
2
votes
3answers
36 views

Adding maximum values from different levels to a new column in a data.frame

I have a following R problem. I made an experiment and observed some cars speed. I have a table with cars (where number 1 means for example Porche, 2 Volvo and so on) and their speeds. One car could ...
2
votes
2answers
60 views

R: Fastest way to do row wise computation on multiple columns of a data frame

I have a data frame where I want to add another column that's a result of computation involving 3 other columns. The method I am using right now seems to be very slow. Is there any better method to do ...
3
votes
2answers
42 views

Calculate weekly returns per row - apply

I got a quite basic question but I can't wrap my head around how to implement it: I've got a data.frame of returns where the returns per instrument are row-wise: ...
3
votes
4answers
102 views

Simplify the code by using one of R's apply functions

I cannot find a satisfying tutorial that would explain me how to use all the possibilities of apply functions. I'm still a newbie but this could often come in handy and significantly simplify my code. ...
0
votes
3answers
37 views

Better way to remove redundancy between two columns of a data frame in r

If I have a data frame which contains one column, name, and another, site, and I want to determine the number of unique name to site relationships. I've written the following script. It works but ...
2
votes
1answer
77 views

Applying a function between specific pairs of columns in a matrix in R

I am generating a matrix using the lsa package in R. After the matrix is created, I would like to calculate the cosine similarity between specific pairs of documents (columns) in the matrix. ...
3
votes
1answer
42 views

Setting the values in a matrix row from within an parallel sapply in R

I have a matrix (origmatrix), on which I want to perform a function per column. I want to put the results of this function into another matrix (newmatrix), with the row number of this row ...
1
vote
3answers
48 views

Calculating percentage of each column in a data frame

I have a data frame: x <- data.frame(id=letters[1:3],val0=1:3,val1=4:6,val2=7:9) id val0 val1 val2 1 a 1 4 7 2 b 2 5 8 3 c 3 6 9 I want to calculate ratio for ...
1
vote
1answer
71 views

Several or multiple timeseries plot outputs from a single data frame

Hello, I have been struggling with this problem for a while now and anyone who can help me out I would greatly appreciate it. First off, I am working with time series data in a single data frame ...
1
vote
2answers
91 views

Apply in R: recursive function that operates on its own previous result

How do I apply a function that can "see" the preceding result when operating by rows? This comes up a lot, but my current problem requires a running total by student that resets if the total doesn't ...
2
votes
1answer
51 views

trouble with apply statement in R

I want to use an apply statement to do something to each row of a data frame in R. The following works where I call the function "calc.Sphere.Metrics" with a bunch of parameters and an index i. I ...
1
vote
1answer
73 views

Apply Function for Rows of a Dataframe where the Function uses Row Elements

I'm trying to apply a function to each element of a data frame. A simple example of such a data frame would be: > accts ACCOUNT DATE 1 2008-03-01 2 2009-06-17 3 ...
5
votes
1answer
99 views

Error using Apply Function in R on Tutorial Example

I am trying to learn about how to use the apply function and I came across this tutorial: http://nsaunders.wordpress.com/2010/08/20/a-brief-introduction-to-apply-in-r/ which seems clear and concise, ...
0
votes
2answers
32 views

R Programming - Prevent “apply” from repeating results beyone the range of data

I have a data set (in a data frame). I am using apply to add a new column to the data set in which the rows of the new column execute a function using elements from other columns within that row. ...
2
votes
1answer
50 views

Is there a way to access the iteration number in replicate()?

Is there some way to access the current replication number in the replicate function so I can use it as a variable in the repeated evaluation? For example in this trivial example I'd like to use the ...
6
votes
4answers
105 views

Optimization: splitting dataframe into a list of dataframes, transforming data per row

Preliminaries: this question is mostly of educational value, the actual task at hand is completed, even if the approach is not entirely optimal. My question is whether the code below can be optimized ...
1
vote
0answers
164 views

How to avoid using loops in this algorithm?

I try to avoid the loops in R, but it seems that I have to use it some times: X=rnorm(100) Y=matrix(rnorm(200*100),ncol=100) Beta=function(y,period){ # y is a vector, maybe one row of Y ...
2
votes
5answers
117 views

R - count at each row the number of columns in the “row neighbourhood” that contain only NA

How would you create from a data frame a vector that gives for each row the number of columns that are "NA" (or a custom value) in that row and the n rows above and m rows below. So if m = n = 1 ...
0
votes
1answer
22 views

R accessing both components of an vector from apply

I have an xtabs object that looks like Cust_ID Date 01/33 01/94 01/38 02/114 ... 2011-01-01 3.1 1.7 -2.3 4.8 2011-01-02 1.7 4.5 0.0 3.2 2011-01-03 ...
0
votes
1answer
50 views

Javascript oop undefined value: Method to add a scope?

Code: var test = { con: true }; var conrun= function(){ return this.con; }; Function.prototype.curry = function(scope){ var fn = this; var scope = scope||window; return ...
3
votes
2answers
69 views

Remove thousand's seperator [duplicate]

I imported an Excel file and got a data frame like this structure(list(A = structure(1:3, .Label = c("1.100", "2.300", "5.400"), class = "factor"), B = structure(c(3L, 2L, 1L), .Label = ...
0
votes
1answer
31 views

Using apply function to obtain only those rows that passes threshold in R

I am trying to apply a filter on my data (which is in the form of matrix) with say 10 columns, 200 rows. I want to retain only those rows that where the coefficient of variance is greater than a ...
4
votes
3answers
172 views

what's the difference between 'call/apply' and 'bind' [duplicate]

var obj = { x: 81, getX: function() { console.log( this.x) } }; var getX = obj.getX.bind(obj);//use obj as 'this'; getX();//81 var getX = function(){ obj.getX.apply(obj); } ...
1
vote
3answers
41 views

Apply over all columns and rows of two diffrent dataframes in R

I try to apply a function over all rows and columns of two dataframes but I don't know how to solve it with apply. I think the following script explains what I intend to do and the way i tried to ...
1
vote
1answer
121 views

Apply function to every column in data frame operating on names

I'm trying to write something that will take a data frame and plot every numeric column, with simple plots for non-normal distributions and control charts for normal ones: library(plyr) library(qcc) ...
1
vote
2answers
106 views

How to align dates for merging two xts files?

I'm trying to analyze 1-year %-change data in R on two data series by merging them into one file. One series is weekly and the other is monthly. Converting the weekly series to monthly is the problem. ...
0
votes
1answer
68 views

Applying function to multiple rows using values from multiple rows

I have created the following simple function in R: fun <- function(a,b,c,d,e){b+(c-a)*((e-b)/(d-a))} That I want to apply this function to a data.frame that looks something like: > ...
1
vote
1answer
97 views

Maximum slope for a given interval each day

I have a set of time series data with ground surface temperatures measured every 10 minutes over multiple days (actually 2 years of data) from three different locations. What I am interested in ...

1 2 3 4 5 8