Writetable for different data to same file
이전 댓글 표시
Hello,
I have a script that reads in a csv file and outputs a number of variables. I then store this variable in a table with two headings, the name of the file and in this case Time to Completion.
varNames = {'File','Time to Completion)'};
T = table(Name,TTC,'VariableNames',varNames);
writetable(T,'Time_Completion.xls');
My problem is that I want to use this same file (Time_Completion.xls) for different runs of the script with new data so that the columns populate with every new run rather than overwriting. I don't know to read the file every time it opens and if there's data in one row go down and fill the next. Appreciate any help. Thanks.
답변 (1개)
Cris LaPierre
2021년 8월 5일
0 개 추천
댓글 수: 6
CH
2021년 8월 5일
Cris LaPierre
2021년 8월 5일
Share the code you use to create the table as well as the code you use to append the data to your existing xls file.
CH
2021년 8월 5일
Cris LaPierre
2021년 8월 5일
편집: Cris LaPierre
2021년 8월 5일
When do you get the error message? Please share the complete error message (all the red text).
From the example I linked to above, code to append to an existing files should look something like this.
writetable(newInsect,'InsectCollection.txt','WriteMode','Append',...
'WriteVariableNames',false,'WriteRowNames',true)
The following describes how Append behaves with spreadsheets:
- 'append' — The writing function appends the input data to the bottom of the occupied range of the specified sheet.
- If you do not specify a sheet, then the writing function appends the input data to the bottom of the occupied range of the first sheet.
Cris LaPierre
2021년 8월 5일
Do you get an error when you run the following?
InsectSpecies = {'Monarch Butterfly';'Seven-spot Ladybird';'Orchid Mantis';...
'American Bumblebee';'Blue Dasher Dragonfly'};
InsectOrder = {'Lepidoptera';'Coleoptera';'Mantodea';'Hymenoptera';'Odonata'};
InsectFamily = {'Nymphalidae';'Coccinellidae';'Hymenopodidae';...
'Apidae';'Libellulidae'};
PredatoryInsect = logical([0;1;1;0;1]);
T = table(InsectSpecies,InsectOrder,InsectFamily,PredatoryInsect)
writetable(T,'InsectCollection.xls','WriteRowNames',true)
%% Now append a new row to the table
newInsect = table({'Red-banded leafhopper'},{'Hemiptera'},{'Cicadellidae'},logical([0]));
writetable(newInsect,'InsectCollection.xls','WriteMode','Append',...
'WriteVariableNames',false,'WriteRowNames',true)
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!