Removing "VarName" row when exporting table to csv
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
UserCubed
el 29 de Mayo de 2018
Comentada: Ameer Hamza
el 29 de Mayo de 2018
I'm trying to export a table to csv, and no matter what I do row 1 always ends up being VarName1, VarName2, etc.
Is it possible to not have this row?
2 comentarios
Respuesta aceptada
Ameer Hamza
el 29 de Mayo de 2018
Use the following option to disable the variable names in the first row
writetable(table, 'test.csv', 'WriteVariableNames', 0)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables 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!