How to check what part of an array isn't scalar?

조회 수: 2 (최근 30일)
Flynn McGuire
Flynn McGuire 2020년 6월 25일
댓글: Flynn McGuire 2020년 6월 25일
I keep getting an error from @unique saying a categorical I have array isn't scalar. Is should be, but my data set is huge.
How to I figure out what part is cuasing the error?
Thanks!

답변 (1개)

the cyclist
the cyclist 2020년 6월 25일
편집: the cyclist 2020년 6월 25일
Just to clarify, are you saying that you have a categorical array, you are trying to apply the unique command to that array, and you are getting an error that says the array isn't scalar?
Please post the full error message you are getting.
Is the array too big to put in a MAT file and upload here?
If C is your array, and suppose it has N elements (where N is large), and the line
unique(C)
gives the error you mention. Then you could try unique on, say, the first million rows (or whatever):
unique(C(1:1000000))
and see if that fails. If so, then keep narrowing down:
unique(C(1:500000))
and so on. When it does not give the error, then zoom in on the other part of the array:
unique(C(500001:100000))
etc, to narrow down to a section of the array that is small enough to visually inspect more easily.
  댓글 수: 1
Flynn McGuire
Flynn McGuire 2020년 6월 25일
It might be more a problem with splitapply than unique:
column_varnames = {...}
edicu_data = data(ismember(data.mrn,edicu),:);
ed_icu = edicu_data(:, column_varnames);
G = findgroups(edicu_data.mrn);
all_summary_icu = struct();
for i = 1:length(column_varnames)
varname = column_varnames{:, i};
all_summary_ed_icu_demographic.(varname) = splitapply(@unique, ed_icu(:,varname), G);
end
The function 'unique' returned a non-scalar value when applied to the 4th group of data.
To compute nonscalar values for each group, create an anonymous function to return each value in a scalar cell:
@(x1){unique(x1)}
The categories in the 4th group of data are 'yes','no', and <undefined>

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

카테고리

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

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by