The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
39 views

Plot titles in R using sapply()

I want to make qqnorm plot out of every variable in my data frame using sapply(). This is what I've got so far: myfun=function(x) { c(qqnorm(x), qqline(x) ) } sapply(mydata, myfun) It ...
2
votes
1answer
66 views

Sapply different than individual application of function

When applied individually to each element of the vector, my function gives a different result than using sapply. It's driving me nuts! Item I'm using: this (simplified) list of arguments another ...
0
votes
2answers
42 views

apply function to groups within each column of a data frame in R

I want to calculate the mean and standard deviation, by group, for each column in a subset of a large data frame. I'm trying to understand why some of the answers to similar questions aren't ...
2
votes
3answers
56 views

Extracting matrices from list of list sub-elements keeping the list/sub-list indices for the matrix

New to r and was hoping to find an elegant way of solving what seems like a simple problem. The context of the problem is as follows: I am running regressions for a set of companies at rolling ...
0
votes
3answers
45 views

Can I do multiple split sapply operations on a large data frame?

I've been at this for a few hours now, and can't seem to find a solution. I have a very large data frame (upwards of 1.5 million rows), in which I want to do a fairly specific operation. First of all, ...
0
votes
3answers
62 views

R populate list by it's values

Say I have a list: > fs [[1]] NULL [[2]] NULL [[3]] NULL [[4]] [1] 61.90298 58.29699 54.90104 51.70293 48.69110 I want to "reverse fill" the rest of the list by using it's values. Example: ...
0
votes
2answers
28 views

Vectorized function doesn't yield desired result

..here's my problem along the data: rm(list=ls()) clc06_1 <- "111 - Continuous urban fabric" clc06_2 <- "112 - Discontinuous urban fabric" clc06_3 <- "121 - Industrial or commercial units" ...
0
votes
1answer
40 views

How to loop a function with sapply?

I would like to calculate roots for different y-values of a quadratic equation. But when I run the following code get an error I do not understand. If y is just one numeric value, instead of the ...
2
votes
2answers
140 views

R + combine a list of vectors into a single vector

I have a single list of numeric vector and I want to combine them into one vector. But I am unable to do that. This list can have one element common across the list element. Final vector should not ...
1
vote
1answer
95 views

Vectorization of nested for loops

I am trying to vectorize my nested for loop code using apply/mapply/lapply/sapply or any other way to reduce the running time. My code is as follows: for (i in 1:dim){ for (j in i:dim){ ...
0
votes
1answer
31 views

Trouble with sapply

Here is the reproductible example (at least on my computer) a <- as.Date(as.Date("2012-10-01"):as.Date("2013-03-25")) myFun <- function (x) { ...
0
votes
2answers
72 views

return a plot for each level of a factor in r

I want to produce an X,Y plot for each separate ID from the dataframe 'trajectories' : **trajectories** X Y ID 2 4 1 1 6 1 2 4 1 1 8 2 3 7 2 1 5 2 1 ...
0
votes
1answer
38 views

Using xpathapply to take only the first h2 node of each row in vector of webscrapes

I am trying to parse a (large) vector of scraped html, more specifically the , but some of the pages in the vector have two in them so the replacement ends up with more rows than the data. My ...
2
votes
2answers
72 views

a faster way of running sapply in a for loop

I'm trying to find a faster way to run a function, which is looking for the median value for every given day in a time period. Is there a faster way than running Sapply in a for loop? for(z in ...
2
votes
3answers
80 views

big ddply, appropriate alternative

I have a list of data.frames. Each data.frame is not very big ~150,000 rows. But my list has over 1000s of these data.frames. a data.frame looks like: comp <- read.table(text = " G T H S B ...
3
votes
3answers
112 views

Repeating a user-defined function using replicate() or sapply()

I have defined a custom function, like this: my.fun = function() { for (i in 1:1000) { ... for (j in 1:20) { ... } } return(output) } which returns ...
3
votes
1answer
128 views

adding na.rm to sapply when calculating median

I have created a dataframe "killers" with 3 variables. The data are numeric though there exist NA values throughout. My goal is to calculate the mean on each of the 3 variables. sapply(killers, ...
0
votes
1answer
66 views

Why is my sapply function building a vector of integers?

I have two related questions -- I'm trying to learn R properly, so I'm doing some homework problems from an R course. They have us writing a function to return a vector of correlations: ...
0
votes
2answers
125 views

Returning a data frame

I am using the following code to extract the number of complete cases from files: complete <- function(directory, id=1:332) { sapply(id, fn, directory)} fn <- function(id, directory) { ...
4
votes
4answers
140 views

sapply with custom function (series of if statements)

I want to run a function which looks at two vectors, returning different values depending on the signs of the values in the two vectors. I have written a function which works to compare two values, ...
0
votes
1answer
114 views

Automatically creating derived variables in a dataframe [duplicate]

Possible Duplicate: Processing the list of data.frames with “apply” family of functions I have a dataframe with six numeric variables V1, V2, V3 and V1.lag, V2.lag, V3.lag. NOTE: My real ...
2
votes
2answers
178 views

weighted means by group and column

I wish to obtain weighted means by group for each of several (actually about 60) columns. This question is very similar to: repeatedly applying ave for computing group means in a data frame just ...
1
vote
2answers
111 views

Processing the list of data.frames with “apply” family of functions

I have a data frame which I then split into three (or any number) of dataframes. What I’m trying to do is to automatically process each column in each dataframe and add lagged versions of existing ...
0
votes
1answer
98 views

Counting specific characters in a string, across a data frame. sapply

I have found similar problems to this here: Count the number of words in a string in R? and here Faster way to split a string and count characters using R? but I can't get either to work in my ...
0
votes
1answer
64 views

sapply cannot handle date correctly [duplicate]

Possible Duplicate: Why does mapply not return date-objects? i got the following bizzar problem, I have no problem when I conver one single string to date: as.Date(alldays[1]) [1] ...
1
vote
1answer
74 views

average pairs of columns in R

I would like to average pairs of columns in a data set, not with a moving average. I want to divide up the columns into groups of two and find the average for each pair. I present a sample data set, ...
2
votes
0answers
96 views

getting match.call() to work with *apply & plyr? (re: Referencing a dataframe recursively)

The purpose of the functions below are to allow for self-referencing assignments more easily. (As suggested here: Referencing a dataframe recursively ) So that instead of # this ...
0
votes
1answer
523 views

R: Apply function on specific columns preserving the rest of the dataframe

I'd like to learn how to apply funtions on specific columns of my dataframe without "excluding" the other columns from my df. For example i'd like to multiply some specific columns by 1000 and leave ...
0
votes
1answer
58 views

simple z-tranformation over all columns

i just wrote a very basic function for the z tranformation in a Matrix over all columns. It looks like this: sapply(MyObject, function(x){(x-mean(x))/sd(x)}) I randomly checked my function for some ...
0
votes
3answers
94 views

R: sapply printing results

I have code that is doing this: sapply(unique(groups.50),function(g)data$SEQUENCE_ID[groups.50 == g]) But in the RGui window, I can only scroll up to see some of the results. The first 10 or so ...
7
votes
1answer
111 views

Speeding up function that uses which within a sapply call in R

I have two vector e and g. I want to know for each element in e the percentage of elements in g that are smaller. One way to implement this in R is: set.seed(21) e <- rnorm(1e4) g <- rnorm(1e4) ...
0
votes
1answer
135 views

Updating a dataframe with function and sapply

I am attempting to set a column in a dataframe equal to either 'US' or 'Foreign', depending on country. I believe the proper way to do so is to write a function, then use sapply to actually update ...
0
votes
2answers
80 views

sapply paste before at beginning of string

So I have a vector lizt <- c("a","b","c") > lizt [1] "a" "b" "c" and I can use sapply to paste characters after each element lizt2 <- sapply(lizt,paste0, "$", USE.NAMES=F) lizt2 [1] ...
3
votes
1answer
79 views

Why parameters passed by function can not be found when sapply subset to a list of dataframe in R

I met a wired problem while sapply subset to a list of dataframe inside a function that R saying "Error in eval(expr, envir, enclos) : object 'thresh' not found". I wonder why this would happen. ...
0
votes
2answers
105 views

R Combine mapply and sapply

I have a function in R that takes in 3 parameters, say foo(x,y,z). When I call the function, I really have a list of elements for x, and a list for y but only one element for z. If Z was a list, and ...
0
votes
0answers
85 views

sapply and pmvnorm correlation matrix

I'm currently trying to use the sapply command to calculate some double sums. Currently my code is as follows: M1=sapply(c(p,p), function (x,y) pmvnorm(v,c(qnorm(Q[x]), qnorm(Q[y])),c(0,0), matrix ...
1
vote
2answers
177 views

How to rewrite sapply as a for loop

I want to replace the behaviour of sapply with a for loop. (See further down for why, if interested.) Here is a simplification of the sapply version of my code: slow_function=function(n) c(n*n, 0, ...
0
votes
1answer
92 views

function over more than one list

I do not use that many functions but when I do I tend to use an anon function and some form of apply . I now however am trying to write a function that works over items in a list. There are two ...
3
votes
3answers
198 views

data.frame: create column by applying a function to groups of rows

I have a data frame consisting of results from multiple runs of an experiment, each of which serves as a log, with its own ascending counter. I'd like to add another column to the data frame that has ...
7
votes
2answers
563 views

R: loop over columns in data.table

I want to determine the column classes of a large data.table. colClasses <- sapply(DT, FUN=function(x)class(x)[1]) works, but apparently local copies are stored into memory: > memory.size() ...
1
vote
3answers
3k views

How to subset from a list in R

I have a rather simple task but haven't find a good solution. > mylist [[1]] [1] 1 2 3 4 5 6 7 8 9 10 [[2]] [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" ...
0
votes
1answer
269 views

function runs well line by line with specified i's but does not work with function call

FUNC <- function(i){ var <- i dist <- sapply(1:(i-1),function(x){list[[x]]*co[var,x]}) mean <- sapply(1:(i-1),FUN2) block <- t(co[i,i]*list[[i]])+rowSums(mean) new_list[[i]] <- ...
1
vote
1answer
220 views

loop or sapply function for multiple least cost analysis in R

I am using the package gdistance for a least cost analysis. The idea is to determine the path from a destination point to a source over a costgrid (raster) with defined cost values; the path thereby ...
1
vote
2answers
253 views

which.min not working correctly inside sapply on data-frame?

Can anyone explain this strange behavior found when trying to use sapply and which.min to find the first lines inside a dataframe satisfying a condition? The dataframe is trApr; it's sorted by ...
6
votes
3answers
8k views

Apply function to each column in a data frame observing each columns existing data type

I'm trying to get the min/max for each column in a large data frame, as part of getting to know my data. My first try was: apply(t,2,max,na.rm=1) It treats everything as a character vector, because ...
5
votes
2answers
589 views

compare adjacent elements of the same vector (avoiding loops)

I managed to write a for loop to compare letters in the following vector: bases <- c("G","C","A","T") test <- sample(bases, replace=T, 20) test will return [1] "T" "G" "T" "G" "C" "A" "A" ...
8
votes
2answers
1k views

replicate and

In the documentation of sapply and replicate there is a warning regarding using ... Now, I can accept it as such, but would like to understand what is behind it. So I've created this little contrived ...
4
votes
3answers
2k views

Ignore NA's in sapply function

I am using R and have searched around for an answer but while I have seen similar questions, it has not worked for my specific problem. In my data set I am trying to use the NA's as placeholders ...
3
votes
1answer
727 views

R - using general apply() functionality, concatenate across specific columns

I have a data frame with columns that, when concatenated (row-wise) as a string, would allow me to partition the data frame into a desired form. > str(data) 'data.frame': 680420 obs. of 10 ...
2
votes
2answers
579 views

Improving R coding with sapply help

I'm struggling with a bit of code. I can get it to work very inefficiently, but thought that there must be a better way to fix it. I am trying to compile a variable from several different variables. ...

1 2