필터 지우기
필터 지우기

How do I sort a cell of data according to it's label?

조회 수: 9 (최근 30일)
tinkiewinkie
tinkiewinkie 2020년 3월 14일
답변: Aghamarsh Varanasi 2020년 3월 17일
Hi suppose I have the following data,
how do i sort the following data in the order of stridor first followed by wheeze then by crackle.
Thank you.
  댓글 수: 2
Ameer Hamza
Ameer Hamza 2020년 3월 14일
It will be helpful if you attach a small sample dataset.
dpb
dpb 2020년 3월 14일
  1. Turn into categorical variable and set the output order as desired, or
  2. Create auxiliary variable of 1:3-->names in order wanted and sort by it.

댓글을 달려면 로그인하십시오.

채택된 답변

Aghamarsh Varanasi
Aghamarsh Varanasi 2020년 3월 17일
Hi,
As suggested by dpb, you can convert the ‘label’ column of the table to be categorical and specify the order in which you want to sort the data. The following code snippet reflects the same, considering the data to be in a table named ‘dataset’.
% dataset.Var6 is the sixth column of the table
dataset.Var6 = categorical(dataset.Var6, {'stridor', 'wheeze', 'cracle'});
% The order of sort will be the order in which the categories are specified in creating the categorical array
dataset = sortrows(dataset,6);
Hope this helps.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by