How to export a number of strings in a csv file
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Saugata Bose
el 6 de Nov. de 2018
Comentada: b
el 3 de Dic. de 2020
Hello I am working on text analytics in matlabR2017b. Currently, I have a 25 data in csv format. After some preprocessing on these data, I have generated tokenizedDocument data.
cleanData=preprocess(textData);
disp(class(cleanData));% cleanData is tokenizedDocument type
Now I would like to export these data in a csv file along with the length of each document.I have read few posts regarding these exporting and I did not found any relevant post to export tokenizedDocument data to csv file. So I have tried to explore the opportunities of dlmwrite/csvwrite in my program. I have tried these as folloing:
cD=joinWords(cleanData);%to convert from tokenizedDocument to string
Now, would you please suggest me how to export these data along with the length of each string to a csv file?
Thanks,
3 comentarios
Respuesta aceptada
madhan ravi
el 6 de Nov. de 2018
Editada: madhan ravi
el 6 de Nov. de 2018
c=char({'hi','there'})
dlmwrite('c.csv',c,'delimiter','')
dlmwrite just writes each cell with a new line
5 comentarios
b
el 3 de Dic. de 2020
This puts the first string 'hi' in A1, and the second string 'there' in A2 (in excel notations, when this csv file is opened in excel).
How to put the first string in A1, and the second string in B1 (instead of A2)?
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets 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!