How to expand a table with more columns?
34 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a table T1 with a size of 30000 x 55.
How do I add 6 more columns of this table: A, B, C, D, E, F, each of them have a size of 300000 x 1.
I tried to first form a new table
T2 = table(A, B, C, E, E, F);
and then join them together:
T_new = join(T1, T2);
Here is the error:
Error using tabular/join (line 130)
Cannot find a common table variable to use as a key variable.
0 commentaires
Réponse acceptée
Dave B
le 30 Sep 2021
Modifié(e) : Dave B
le 30 Sep 2021
You can use the [ ] syntax to concatenate them, just like with a matrix (make sure that they don't share variable names):
a=rand(10,1);
b=rand(10,1);
T1=table(a,b)
c=rand(10,1);
d=rand(10,1);
T2=table(c,d)
T3=[T1 T2]
Alternatively, if you want to use join, you just need something to join them on (something which identfies which rows are the same in the two tables). You can use an existing index variable, or the RowNames property for this:
T1.Properties.RowNames=string(1:height(T1))';
T2.Properties.RowNames=string(1:height(T2))';
T4=join(T1,T2,'Keys','Row')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!