joining two tables with two keys

15 visualizaciones (últimos 30 días)
alpedhuez
alpedhuez el 13 de Jun. de 2020
Comentada: alpedhuez el 14 de Jun. de 2020
I have two tables table 1 and table 2.
Table 1
day location expenses
1 Buckingham_Palace 1 million
1 Los_Angels 2 million
2 Los_Angels 1 million
2 New_York 1 million
Table 2
day location number_of_reporters
1 Los_Angels 300
2 Los_Angels 500
2 New York 100
Then I want to create table 3
day location expenses number of reporters
1 Buckingham_Palace 1 million
1 Los_Angels 2 million 300
2 Los_Angels 1 million 500
2 New_York 1 million 100
Please advise.
  2 comentarios
Image Analyst
Image Analyst el 13 de Jun. de 2020
Did you try join(), and outerjoin()? I thought I've referred you to this link before, but maybe not. So, fix your post (attach your tables in a .mat file) AFTER you read that link.
alpedhuez
alpedhuez el 14 de Jun. de 2020
I think the problem is that the documetation
does not have an example using keys
'Keys' Variables to use as keys
positive integer | vector of positive integers | character vector | cell array of character vectors | string array | logical vector
Variables to use as keys, specified as the comma-separated pair consisting of 'Keys' and a positive integer, vector of positive integers, character vector, cell array of character vectors, string array, or logical vector.
You cannot use the 'Keys' name-value pair argument with the 'LeftKeys' and 'RightKeys' name-value pair arguments.
A vector of row labels can be a key, alone or in combination with other key variables. For more information, see the Tips section.
Example: 'Keys',[1 3] uses the first and third variables in Tleft and Tright as key variables.
Example: 'Keys',{'X','Y'} uses the variables named X and Y in Tleft and Tright as key variables.
Example: 'Keys','Row' uses the vectors of row names of Tleft and Tright as key variables, if both Tleft and Tright are tables with row names.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Tables en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by