Mean and Standard deviation table
Mostrar comentarios más antiguos
I have a table "cal_table" and it looks like this:

I would like to find the mean and standard deviation of each 'cal0_05mM', 'cal0_03mM', ..., 'cal0_50mM' by teh three 'Rep'. What is the quickest way to do it?
Thank you very muuch.
Respuesta aceptada
Más respuestas (1)
the cyclist
el 20 de Ag. de 2022
0 votos
1 comentario
the cyclist
el 20 de Ag. de 2022
Editada: the cyclist
el 20 de Ag. de 2022
To be more specific, you can do the one-liner
groupsummary(cal_table,Var1,["mean","std"])
Here is an example, related to the one in the documentation:
% Some data
Gender = ["male";"female";"female";"male";"male"];
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
T = table(Gender,Age,Height,Weight)
% Get the mean and std
groupsummary(T,"Gender",["mean","std"])
Categorías
Más información sobre Matrices and Arrays en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!