Can you parameterize table lookup, i.e. t1.A(i) = t2.A(t2.B==t1.B(i)), so it does not require a loop?

1 visualizzazione (ultimi 30 giorni)
I know this question must have been asked somewhere before, but I have failed to find it answered.
I have two tables, that looks something like this:
ID = {1;2;3};
Name = {'Joe';'Alex';'Lily'};
t1 = table(ID,Name);
ID = {1;1;3;1;2;3;1;3;2};
t2 = table(ID);
n = height(t2);
Now, I want to enrich t2 with names, by looking up which ID corresponds to which name in t1. What is the most efficient way to do this? In my experience, doing it in a loop like this is painfully slow:
t2 = addvars(t2,cell(n,1),'NewVariableNames', {'Name'});
for i = 1:n
t2.Name(i) = t1.Name(t1.ID == t2.ID(i));
end
I found this thread on using cellfun instead of a loop, but it seems that for that specific case, a loop is faster.

Risposta accettata

Stephen23
Stephen23 il 2 Ago 2022
Modificato: Stephen23 il 2 Ago 2022
If you stored the IDs as basic numeric arrays, rather than inefficiently as complex cell arrays containing lots of numeric scalars, then this would be simple and efficient using one of the JOIN() family:
ID = [1;2;3];
Name = {'Joe';'Alex';'Lily'};
t1 = table(ID,Name)
t1 = 3×2 table
ID Name __ ________ 1 {'Joe' } 2 {'Alex'} 3 {'Lily'}
ID = [1;1;3;1;2;3;1;3;2];
t2 = table(ID)
t2 = 9×1 table
ID __ 1 1 3 1 2 3 1 3 2
t2 = join(t2,t1)
t2 = 9×2 table
ID Name __ ________ 1 {'Joe' } 1 {'Joe' } 3 {'Lily'} 1 {'Joe' } 2 {'Alex'} 3 {'Lily'} 1 {'Joe' } 3 {'Lily'} 2 {'Alex'}

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by