Using writetable in a for loop to create new txt/csv files for each step

조회 수: 35 (최근 30일)
Hi,
I am basically going through csv files and adding a collumn on which is the running cumlitive sum of 144 entries.
I then want to write a new vairable for each table. I have been using the writetable function but can not seem to get it working with errors regarding the filename. Below is my code without the writetable line, could anyone assist with what I should write to export each iteration as a csv or txt file
% Get the list of all .mat files in current directory
f=dir('*.csv');
for i=1:length(f)
% Read the input file name one-by-one. Load variables to 's'
% It's a structure NOTE to self
x=readtable(f(i).name);
% Get the field names of above structure
fld=fieldnames(x);
% Read actual table
t=x.(fld{1});
% This loop creates a range of rows to be filtered out
for j=1:height(x)
%%add collumn for cumulitve sum
x.AOI=movsum(x.exceedConst,144);
end
end
  댓글 수: 4
Ive J
Ive J 2021년 7월 23일
% if you wanna write the 'whole' modified table to a new file
for i = 1:numel(f)
% do whatever
newfile = ['file', num2str(i), '.csv'];
writetable(x, newfile);
end
% or if you wanna write only 'AOI' to a new file
for i = 1:numel(f)
% do whatever
newfile = ['file', num2str(i), '.csv'];
writetable(x(:, end), newfile);
end

댓글을 달려면 로그인하십시오.

채택된 답변

Scott MacKenzie
Scott MacKenzie 2021년 7월 23일
편집: Scott MacKenzie 2021년 7월 23일
Under the assumption your code is working fine except for the filename issue, here's what I suggest. Use this to create a new filename for the output file. Add the line just before writing to the file:
fNew = insertBefore(f(i).name, '.csv', strcat('_', string(i)));
fNew is the name of the file to write to via writetable. It's the name of the file being processed except adding '_n' just before '.csv'. The value of n is the value of i in the loop.

추가 답변 (1개)

Mathieu NOE
Mathieu NOE 2021년 7월 23일
hello
seems you were one inch or even less to a solution .
Now it was a bit unclear to me if you wanted to save the new table in the original file or to another file
basically the two options are available here :
clc
clearvars
% Get the list of all .mat files in current directory
f=dir('Alarm*.csv');
for i=1:length(f)
% Read the input file name one-by-one. Load variables to 's'
x=readtable(f(i).name);
%%add collumn for cumulitve sum
x.AOI=movsum(x.exceedConst,144);
% write new table in output file
% writetable(x,['out' num2str(i) '.csv']); % debug line : to not
% overwrite input data file => saved in different file name
writetable(x,f(i).name); % this will overwrite input data file
end

카테고리

Help CenterFile Exchange에서 Adding custom doc에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by