vertically concatenate two tables with different types of data

21 views (last 30 days)
I have two tables with the same variables that I want to concatenate vertically.
The problem is that table1 has one of the Variables as double but table2 has the same Variable with cell values, see image
Columns 126 and 128 have the same name in both tables but different type of data which does not allow me to use the following code:
table1 =vertcat(table1, table2);
The error message I'm getting is this one:
Error using tabular/vertcat
Cannot concatenate the table variable 'ACA500300_' because it is a cell in one table and a non-cell in another.
I appreciate any help.
  2 Comments
Dyuman Joshi
Dyuman Joshi on 2 Aug 2023
You can convert the data which is not a cell to a cell and then join them.
Stephen23
Stephen23 on 2 Aug 2023
Edited: Stephen23 on 2 Aug 2023
You could convert the data using e.g. CONVERTVARS or similar.
But the best solution would be to import the data properly in the first place, e.g. by defining the TreatAsMissing option when calling READTABLE.

Sign in to comment.

Accepted Answer

Sugandhi
Sugandhi on 21 Aug 2023
Hi Galo,
I understand that you want to vertically concatenate two tables with the same variables and different types of data.
The error message you are receiving indicates that you cannot concatenate the table variable 'ACA500300_' because it is a cell in one table and a non-cell in another. To resolve this issue, you can convert the cell values in 'table2' to the double data type before concatenating the tables. Here's an example of how you can achieve this:
% Assuming table1 and table2 are your original tables
% Convert the cell values in table2 to double
table2.ACA500300_ = cell2mat(table2.ACA500300_);
% Concatenate the tables vertically
combinedTable = [table1; table2];
In the above code, 'cell2mat' is used to convert the cell values in the 'ACA500300_' column of 'table2' to the double data type. Then, the tables are concatenated vertically using the square bracket notation '[table1; table2]', and the result is stored in the 'combinedTable' variable.
Make sure that the cell values in 'table2' can be converted to doubles. If there are non-numeric values or missing values in the cells, the conversion may result in an error.
For more understanding, kindly go through following links:
cell2mat:

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!