How I change the name of the variables in a table?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi! I have a table like that:
Movement_Table = table(Fetal_table.fetal_movement, Fetal_table_tot.r_prolongued_decelerations, Fetal_table_tot.r_prolongued_light_decelarations, Fetal_table_tot.r_prolongued_accelerations, Fetal_table_tot.r_uterine_contractionss)

How can I change the name of each Var?
Like Var1 renamed as 'Fetal Movement', Var2 as 'Prolongued Decelerations' and so on?
Thank you!
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 15 Mai 2022
Modifié(e) : KALYAN ACHARJYA
le 15 Mai 2022
Just load the table, for example -
var1=[1:10]';
var2=[11:20]';
T=table(var1,var2)
% Change the Var names
T_new=renamevars(T,["var1","var2",], ["new_name1","new_name2"]);
T_new
0 commentaires
Voir également
Catégories
En savoir plus sur Numeric Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!