How import file csv with vertical header
Show older comments
I am trying to import file csv. The header of the file is located on the vertical layout. For example, there are table with dimention 9x2, and the header is in column 1.
Name :; A
birth :; 22-Feb-1964
Age :; 1
Height :; 168.8 m
Weight :; 50.0 kg
Address :; C
School :; D
Note :; E
Range of time :; 07-May-14 13:46 - 12-May-14 08:12
Any of you have an idea how to import this csv file, by aware the type of each data (e.g.: double/string/etc)?
1 Comment
Walter Roberson
on 22 Jul 2018
Please do not close a question that has an answer.
Answers (2)
Christopher Wallace
on 16 Jul 2018
Hi Agnes,
One way you could accomplish this is to first convert your data into an array and then transpose it.
a = readtable('YourCSV.csv', 'Delimiter', ';', 'ReadVariableNames', false);
b= table2array(a)'; % convert to array and transpose.
Then you'll need to convert it back to a table and update the variable names.
newTable = array2table(b(2,:));
To update the variables names you can use the command:
newTable.Properties.VariableNames = a{:,1};
BUT... the way the names are currently recorded in the data results in invalid table variable names due to the space and colon at the end.
You could remove those in a loop prior to setting them.
7 Comments
Agnes Palit
on 16 Jul 2018
Christopher Wallace
on 16 Jul 2018
What do you want the data types to be?
Agnes Palit
on 16 Jul 2018
Christopher Wallace
on 16 Jul 2018
You can use various methods to adjust the type but it depends on the starting type and what you want it to be. Without an example of what you want to do the best I can tell you is to look at:
str2double() and
num2str
Agnes Palit
on 16 Jul 2018
Edited: Agnes Palit
on 16 Jul 2018
Christopher Wallace
on 16 Jul 2018
Edited: Christopher Wallace
on 16 Jul 2018
Please give me a specific example of what you're trying to do and all of the code you currently have.
Agnes Palit
on 16 Jul 2018
Edited: Agnes Palit
on 16 Jul 2018
Walter Roberson
on 22 Jul 2018
0 votes
It is not possible to use readtable() for this purpose in any useful way, as readtable() expects the columns to be consistent data format, and would probably just give up and say that the second column was all character vectors.
You could perhaps adapt the code I posted in https://www.mathworks.com/matlabcentral/answers/285186-importing-data-without-knowing-number-of-columns#comment_368710 which goes through a bunch of trouble to figure out what the data types are of a cell array
Categories
Find more on Variables 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!