Column Headers from Imported Data
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
When importing Data from an ASCII file, it only saves one row of text for the column headers but I would like it to save two rows of text as column headers. Both are tab delimited. How do I import the file with two rows of Column Headers?
3 comentarios
Star Strider
el 6 de Nov. de 2019
In readtable, under Text Files Only, see the 'HeaderLines' name-value pair. (Cannot link directly to it.)
Respuestas (1)
Subhadeep Koley
el 8 de Nov. de 2019
Hi, refer the example below.
filename = fullfile(matlabroot,'examples','matlab','myCsvTable.dat');
n = 2; % Number of rows to be skipped at the beginning
T = readtable(filename,'HeaderLines',n);
Hope this helps!
0 comentarios
Ver también
Categorías
Más información sobre Large Files and Big Data en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!