Jump to content

Sort 2D Array with Alpha and Numerical Columns


Go to solution Solved by millisys,

Recommended Posts

Hey folks,

I am trying to sort a 2D array and having a little difficulty. The first column is alpha and the second column is numeric. Here is the CSV file that I am reading from:

bob,12.4

jim,27.2
mary,2.6
susan,3.8

When I sort the array, the second column is sorting as

bob,12.4
mary,2.6
susan,3.8
jim,27.2

instead of

mary,2.6
susan,3.8

bob,12.4
jim,27.2

which I imagine is a result of the data being interpreted as a string value instead of a number value. I have tried using some ideas  such as stringsplit to create an array of each line, change the second column to number, and then reassemble it, but it doesn't seem to be working.

Here is the AutoIt code. Any help would be appreciated. Thank you.

#include <file.au3>
#include <array.au3>

Local $scores
_FileReadToArray("scores.csv", $scores, 0, ",")
_ArraySort($scores, 1, 0, 0, 1)
_ArrayDisplay($scores, "column 1 ascending")
Link to comment
Share on other sites

  • Moderators

millisys,

Try my ArrayMultiColSort UDF: ;)

#include <Array.au3>

#include "ArrayMultiColSort.au3"

Global $aArray[4][2] = [["bob", 12.4], ["jim", 27.2], ["mary", 2.6], ["susan", 3.8]]

Global $aSortData[1][2] = [[1, 0]] ; Sort col 1 as ascending numeric

_ArrayMultiColSort($aArray, $aSortData)

_ArrayDisplay($aArray, "", Default, 8)
M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Hello,

Try to convert to Number the second column before sort:

#include <file.au3>
#include <array.au3>

Local $scores
_FileReadToArray("scores.csv", $scores, 0, ",")

_ArraySort($scores, 1, 0, 0, 1)
_ArrayDisplay($scores, "column 1 ascending")

For $i = 0 To UBound($scores) - 1
    $scores[$i][1] = Number($scores[$i][1])
Next

_ArraySort($scores, 1, 0, 0, 1)
_ArrayDisplay($scores, "column 1 ascending")

Edit: I forgot to say that if you want to sort ascending you should change the first 1 in _ArraySort() function to 0 (0 means ascending and 1 descending).

Cheers,

sahsanu

Edited by sahsanu
Link to comment
Share on other sites

An alternative way

#include <file.au3>
#include <array.au3>

Local $scores
_FileReadToArray("scores.csv", $scores, 0, ",")

$a = UBound($scores)
Local $temp[$a][2]
For $i = 0 to $a - 1
    $n = _ArrayMaxIndex($scores, 1, 0, 0, 1)
    $temp[$i][0] = $scores[$n][0]
    $temp[$i][1] = $scores[$n][1]
    $scores[$n][1] = ""
Next
_ArrayDisplay($temp)

:)

Edit

sahsanu  thumbsup.gif

Edited by mikell
Link to comment
Share on other sites

 

Hey folks,

I am trying to sort a 2D array and having a little difficulty. The first column is alpha and the second column is numeric. Here is the CSV file that I am reading from:

bob,12.4

jim,27.2

mary,2.6

susan,3.8

When I sort the array, the second column is sorting as

bob,12.4

mary,2.6

susan,3.8

jim,27.2

instead of

mary,2.6

susan,3.8

bob,12.4

jim,27.2

which I imagine is a result of the data being interpreted as a string value instead of a number value. I have tried using some ideas  such as stringsplit to create an array of each line, change the second column to number, and then reassemble it, but it doesn't seem to be working.

Here is the AutoIt code. Any help would be appreciated. Thank you.

#include <file.au3>
#include <array.au3>

Local $scores
_FileReadToArray("scores.csv", $scores, 0, ",")
_ArraySort($scores, 1, 0, 0, 1)
_ArrayDisplay($scores, "column 1 ascending")

 

Your opening post says you use

_ArraySort($scores, 1, 0, 0, 1)

which returns

bob,12.4

mary,2.6

susan,3.8

jim,27.2

which correctly sorts ths second column (C0l1) in decending order.

You say you want

mary,2.6

susan,3.8

bob,12.4

jim,27.2

This has the second column (Col1) sorted in ascending order.

Therefore, you need to use

_ArraySort($scores, 0, 0, 0, 1)

It's in the help file under the _ArraySort function.

#include <file.au3>
#include <array.au3>

Local $scores
_FileReadToArray("scores.csv", $scores, 0, ",")
;_ArraySort($scores, 1, 0, 0, 1) ; Sorts second column (Col1) in decending order.
_ArraySort($scores, 0, 0, 0, 1)  ; Sorts second column (Col1) in ascending order.
_ArrayDisplay($scores, "column 1 ascending")
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...