Adding column headers to writetable csv file

I'm trying to figure out how to add column headers to my csv files using writetable.
I started with creating a table of variables (transposed into columns) and then used writetable to export it as a csv. Right now the headersin the output file are Var1 and Var2. How can I change this?
T6 = table(average_in_bin.',num_per_bin.');
writetable(T6,'avg_num_per_bin.csv')

 Respuesta aceptada

Adam Danz
Adam Danz el 29 de Abr. de 2019
Editada: Adam Danz el 13 de Sept. de 2021
The default value for the WriteVariableNames parameter in writetable() is true so all you need is to add variable names to your 'T6' table. Below I named them "NameOne" and "NameTwo".
T6 = table(average_in_bin.',num_per_bin.', 'VariableNames', {'NameOne', 'NameTwo'});
writetable(T6, 'avg_num_per_bin.csv', 'WriteVariableNames', true)

3 comentarios

Jurgen vL
Jurgen vL el 23 de Sept. de 2019
Editada: Jurgen vL el 23 de Sept. de 2019
Note that table variables still have to comply with the character restrictions for MATLAB variable names. So if you want more flexibility in your exported table names, consider using writecell(). Although softwares like R handle names with hyphens and spaces and dots, best-practices include camelCase and underscores.
I believe the "True" has to be lowercase.
writetable(T6, 'avg_num_per_bin.csv', 'WriteVariableNames', true)
Adam Danz
Adam Danz el 13 de Sept. de 2021
Yep, thanks. Corrected.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB Report Generator en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 29 de Abr. de 2019

Comentada:

el 13 de Sept. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by