How to add a new row to a table?
4 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to create a dataset for my project. But I can't add a new line to my table. Second picture dataset. The first image is the error when I try to add the new line. Thank you for your help.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/565186/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/565191/image.png)
1 件のコメント
dpb
2021 年 3 月 28 日
編集済み: dpb
2021 年 3 月 28 日
I've never run across whatever it is that created the tokenizedDocument class shown in the table, but however the symptoms variable was created for the existing table, the same process must be used for your new T variable table content.
ADDENDUM: I see it (tokenizedDocument) is in the Text Analytics Toolbox.
Use it on the input variables of the new table, T
T=table('yourheadersstring',tokenizedDocument('yourdocumentfile'),'variableNames',{'headers','symptoms'});
dataset=[dataset;T];
Salt to match your variables...
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!