Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
141 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 ...
5
votes
2answers
146 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" ...
4
votes
3answers
439 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 ...
4
votes
2answers
216 views

How to rewrite a “sapply” command to increase performance?

I have a data.frame named "d" of ~1,300,000 lines and 4 columns and another data.frame named "gc" of ~12,000 lines and 2 columns (but see the smaller example below). d <- data.frame( ...
4
votes
1answer
454 views

R: Using sapply on vector of POSIXct

I have what may be a very simple question. I want to process a column of POSIXct objects from a dataframe and generate a vector of datetime strings. I tried to use the following sapply call dt ...
2
votes
3answers
458 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 ...
2
votes
1answer
166 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
296 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
vote
1answer
88 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
51 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 ...
1
vote
1answer
142 views

vector of POSIXct and sapply

What if you want to apply a function other than format to a list of POSIXct objects? For instance, say I want to take a vector of times, truncate those times to the hour, and apply an arbitrary ...
0
votes
0answers
9 views

elseif and if with sapply

On Stackoverflow I already recieved a great answer for the use of sapply and the solutions work great and I've successfully implemented them at work (here is the link). using apply to calculate ...
0
votes
1answer
48 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]] <- ...
0
votes
1answer
439 views

Apply a function to each row in a data frame in R

I want to apply a function to each row in a data frame, however, R applies it to each column by default. How do I force it otherwise? > a = as.data.frame(list(c(1,2,3),c(10,0,6)),header=T) > a ...