search for: solution3

Displaying 2 results from an estimated 2 matches for "solution3".

Did you mean: solution
2011 Jul 21
0
There is no One True Solution
Folks, in many recent threads this pattern has been happening: OP: Any suggestions on how to do <something>? Responder 1: Look at <solution1>. Responder 2: Look at <solution2>. Responder 3: Look at <solution3>. Responder 4: It doesn't work for me / I don't like that / it's a stupid solution / etc <conversation degenerates and/or flamewar ensues> There's nothing wrong with comparing / contrasting different solutions, but can we please try to remember th...
2005 Aug 15
4
Re-sort list of vectors
Hi. Can anyone suggest a simple way to re-sort in R a list of vectors of the following form? input $"1" a b c 1 2 3 $"2" a b c 4 5 6 Output should be something like: "a" "1" 1 "2" 4 "b" "1" 2 "2" 5 "c" "1" 3 "2" 6 I've been futzing with mapply(), outer(), split(), rbind()