How to write two columns data in new excel, from the already available two excel files
6 次查看(过去 30 天)
显示 更早的评论
i want to write the common diseases and their cure from the two excel files(attached). The new table should contain two columns one for Diseases and the other for Cure. The code I used is giving me unequal no of rows error, could not find a way to resolve this. Please help get through this or find me a second solution.
% Load the two Excel files
file1 = 'DiseaseCure.csv';
file2 = 'ExcelStages.csv';
data1 = readtable(file1);
data2 = readtable(file2);
% Find the rows in both files that have "Fusarium wilt" and "Bacterial Blight"
fusarium_rows1 = ismember(data1.Disease, {'Fusarium wilt'});
fusarium_rows2 = ismember(data2.Diseases, {'Fusarium wilt'});
bacterial_rows1 = ismember(data1.Disease, {'Bacterial Blight'});
bacterial_rows2 = ismember(data2.Diseases, {'Bacterial Blight'});
% Extract the cures for both diseases from both files
fusarium_cure1 = data1.Cure(fusarium_rows1);
fusarium_cure2 = data2.Cure(fusarium_rows2);
bacterial_cure1 = data1.Cure(bacterial_rows1);
bacterial_cure2 = data2.Cure(bacterial_rows2);
% Combine the cures into a single variable
all_cures = ["fusarium_cure1", "fusarium_cure2", "bacterial_cure1", "bacterial_cure2"];
% Combine the diseases into a single variable
all_diseases = ["Fusarium wilt"; "Fusarium wilt"; "Bacterial Blight"; "Bacterial Blight"];
% Create a new table with the diseases and cures
disease_cure_table = table(all_diseases, all_cures);
% Write the table to a new Excel file
new_file = 'newfile.csv';
writetable(disease_cure_table, new_file,'VariableNames', {'Disease', 'Cure'});
0 个评论
回答(2 个)
Walter Roberson
2023-5-1
A = [1, 2, 3, 4]
B = [5; 6; 7; 8]
table(A, B)
1 个评论
Walter Roberson
2023-5-1
A = [1, 2, 3, 4]
B = [5, 6, 7, 8]
table(A, B)
A = [1; 2; 3; 4]
B = [5; 6; 7; 8]
table(A, B)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!