21,974 reputation
51651
bio website
location
age
visits member for 2 years, 5 months
seen 5 mins ago
stats profile views 1,483

4m
comment Combine incomplete dataframes in R into matrix
Hong, any idea why your answer ends with that error (see my edit in benchmarking)?
5m
comment Combine incomplete dataframes in R into matrix
Added benchmarks. I suspected it might be much slower as you melt the data.frame when it's really not required. Apparently, it's slow, but not by much. Nice compact solution.
10m
revised Combine incomplete dataframes in R into matrix
added 2373 characters in body
13h
revised Combine incomplete dataframes in R into matrix
added 431 characters in body
14h
comment Combine incomplete dataframes in R into matrix
I think Reduce will be terribly slow on a lot of list elements.
14h
comment Combine incomplete dataframes in R into matrix
agstudy, yes indeed. but why are the answers different??
14h
revised Combine incomplete dataframes in R into matrix
added 163 characters in body
14h
answered Combine incomplete dataframes in R into matrix
21h
answered Average of n rows while keeping the data of the first row (of every n rows) in r
1d
comment left/right bottom/top justification of tiles in ggplot2
This is a closely related post. Hope it helps.
1d
comment Using apply to get a numeric value
what about values = 5? that is, for col2, then it's 2/(2+2) = 0.5 (not counting the 5 at all in both cases)?
1d
comment NA-recognizing boolean operator
@Dason, right on. I stand corrected.
1d
comment NA-recognizing boolean operator
you could try any... xx <- c(1,2,3,NA,4,5); any(is.na(xx))
1d
comment tapply function in R
Give us example data for numero and data$td. Even then, the error is clear. numero and data$td must be of the same length.
1d
comment R: Function to search a text string and return dates and prices in two vectors
where do you find the function str_split?
1d
revised R: If the last column element in the previous row is NA, make current row NA
added 29 characters in body
2d
answered R: If the last column element in the previous row is NA, make current row NA
2d
revised R: If the last column element in the previous row is NA, make current row NA
added 75 characters in body
2d
comment R: If the last column element in the previous row is NA, make current row NA
I don't know how it gets to 6:1. What's the logic? What happens when N=3? Explain us how you get from 1:6 to 6:1 when N = 2. Not show us, but explain.
2d
comment R: If the last column element in the previous row is NA, make current row NA
what's the logic to sort a vector into a matrix? Explain us your thought process. Show with an example how you get from a vector to a matrix. It's hard, if not impossible, to know what you think. Your question at the moment is "too localised", I'd say (finding bug(s) in your code).