Hello,
I have data which is extracted from various excel fiels in a folder. I want to sort the data based on the data in the first column. The issue is the data in this column is for ex, '10000 Rest', '3200 Rest', '2000 Rest', etc.. I need the data to be in ascending form. The output I receive is '10000 Rest', '2000 Rest', '3200 Rest', etc. The required output for me is '2000 Rest', '3200 Rest', '10000 Rest'.. etc.
Is there a way to change the sorting type.
Thanks

 採用された回答

Rishabh Mishra
Rishabh Mishra 2021 年 1 月 22 日
編集済み: Rishabh Mishra 2021 年 1 月 22 日

0 投票

Hi,
Based on my understanding of the issue, I suggest you to implement the 'sort_nat' function. The function is used to sort array of strings in natural alphabetcial order. I have added a reference example code below to demonstrate the use of sort_nat function.
arr = {'10000 Rest','3200 Rest','2000 Rest'};
sort_nat(arr);
Hope this helps!

4 件のコメント

Prathamesh Halagi
Prathamesh Halagi 2021 年 1 月 24 日
The problem for me with this is I have large data so doing this wont be very helpful.
Prathamesh Halagi
Prathamesh Halagi 2021 年 1 月 25 日
clear
clc
ds_2 = spreadsheetDatastore('*dir', 'Sheets', 'sheet3', 'Range', 'A1:D20', 'FileExtensions', '.xls', 'ReadVariableNames', true);
ds_2 = readall(ds_2)
C = unique(ds_2)
[C,ia] = unique(ds_2.Var1);
B = ds_2(ia,:)
----
This is my code I have been using for now - I extract the data from multiple .xls files and then remove recurring data. I tried using natsort but it is not working I might be doing some mistake. I want to sort all the data based on the data in first column. I have 468x4 data.
Walter Roberson
Walter Roberson 2021 年 1 月 25 日
編集済み: Walter Roberson 2021 年 1 月 25 日
Can the alphabetic part always be ignored for sorting purposes? For example, no "2000 Checkpoint" along with "2000 Rest" ?
[~, idx] = sort(arrayfun(@(S) sscanf(S, '%d', 1), ds_2.Var1));
Prathamesh Halagi
Prathamesh Halagi 2021 年 1 月 25 日
Yes, I think it can be ignored as all data has number followed by REST.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeShifting and Sorting Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by