Tagged Questions
4
votes
2answers
102 views
Sort matrix (or data.frame) on amount of unique values per column
How to reorder columns of a data.frame on the total amount of unique values per column? As an example:
var1 var2 var3
1 1 1
0 2 2
1 3 3
0 4 1
1 5 2
Is there a way ...
2
votes
2answers
152 views
Reordering items with multiple order criteria
Scenario:
list of photos
every photo has the following properties
id
sequence_number
main_photo_bit
the first photo has the main_photo_bit set to 1 (all others are 0)
photos are ordered by ...
0
votes
2answers
159 views
JQuery order div by value and skip if value is zero
I've done my ordering in my code but instead of reloading the whole json result, I want a client side reorder for my divs.
My C# code for ordering is:
.OrderBy(p=> p.order == 0? int.MaxValue : ...
0
votes
2answers
248 views
PHP wizard required, re-order/sort posts
I have posted this up in various forums, but no luck so far (hope its ok to post it here also?)...I have been trying for a few weeks...no success.
I have two pages on my blog (top rated and most ...
1
vote
3answers
158 views
How to order hash by numerical values in ruby? (without converting to array)
So I have a hash: {"spider" => 213, "frog" => 128, "apple" => 812}.
How can I reorder that so that it orders them by the value in descending order without converting it to an array? So, ...
0
votes
0answers
105 views
Move UP & Down li with javascript
I need a help to move up/down the entries of a ul.
I have this ul with li:
<ul id="itens">
<li id="1">Blabla</li>
<li id="2">Bleble</li>
<li ...
1
vote
2answers
192 views
Algorithm to reorder multiple non-adjacent elements in array to specific index
I've been trying to rack my head over this but it's just not working.
I'm using some proprietary technology that only allows the move of a single element at a time. Super annoying. Think of it as ...
3
votes
3answers
313 views
Sort integer array by given starting integer
I have an array
int[] months = new int[4] {1, 4, 7, 10};
I would like to sort the array starting by the given value and sort the rest of the array in the original order.
Let's say I want to start ...
3
votes
4answers
328 views
What is the process of reordering one list based on the implied reordering resulting from sorting another list called?
I'm not interested in any particular algorithm; I just want to know if doing that has a common name that I'm just not aware of.
To be specific, say I have X = [42, 0, 99] and Y = ["a", "b", "c"]. ...