How to write two columns data in new excel, from the already available two excel files
6 views (last 30 days)
Show older comments
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 Comments
Answers (2)
Walter Roberson
on 1 May 2023
A = [1, 2, 3, 4]
B = [5; 6; 7; 8]
table(A, B)
1 Comment
Walter Roberson
on 1 May 2023
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)
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!