Computing the number of variables belonging to each data type
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
chiefjia
el 5 de Mayo de 2021
Comentada: chiefjia
el 6 de Mayo de 2021
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
0 comentarios
Respuesta aceptada
dpb
el 5 de Mayo de 2021
How about
n_cl=countcats(categorical(varfun(@class,M,'OutputFormat','cell')))
Más respuestas (0)
Ver también
Categorías
Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!