필터 지우기
필터 지우기

Computing the number of variables belonging to each data type

조회 수: 2 (최근 30일)
chiefjia
chiefjia 2021년 5월 5일
댓글: chiefjia 2021년 5월 6일
Hi,
I'm a real beginner in the programming world and also in MATLAB. I'm trying to calculate how many variables (columns from the table) belong to the data types "cell" and "double". So far, I have managed to find what type of data is each column/variable through the following function:
var_class = varfun(@class,M,'OutputFormat','table')
However, this function just gives me the type of data that each variable contains, but not how many variables/columns there are of each type of data. I have tried to calculate this through a for-loop that computes how many 'double' and 'cell' strings there are in the table, by consistently updating the number in the array "total_dtype". The first element would refer to the # of columns containing 'cell' data types and the second element the # of columns containing 'double' data types. I haven't had any success yet. This is what i've come up with for now:
total_dtype = [0 0]
for col=1:width(var_class)
if var_class{:,1} == 'double'
total_dtype(1,1) = total_dtype(1,1) + 1
else
total_dtype (1,2) = total_dtype(1,2) + 1
end
end
I would really appreciate your help.
Thank you in advance,
Jon

채택된 답변

dpb
dpb 2021년 5월 5일
How about
n_cl=countcats(categorical(varfun(@class,M,'OutputFormat','cell')))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by