comparing two excel files
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how can i compare two excel file that dont have same row number in order to get the similarity value? My file 'colon.xlsx' have approx 30 rows and another file 'COLONPOLYPS.xlsx' have only one row. I want to compare the colonpolyps file which have only 1 row with all 30 rows in colon file and get the similarities.
2 Commenti
Andy
il 8 Mar 2021
It is best to attach examples of the files and give examples of the similarities. By similarities do you mean identical values in a cell or within a tolerance?
Risposte (1)
Monisha Nalluru
il 11 Mar 2021
Once the data is present in workspace you can compare using Array Comparsion feature which gives the similar between two matrices i.e 1 when similar and 0 when not similar
As an example
colon=readmatrix('colon.xlsx');
colonpoly=readmatrix('COLONPOLYPS.xlsx');
comparsion=zeros(13,11); % result of comparsion is stored in this variable
for i=2:14 % looping from 2 because first row is heading
comparsion(i,:)= colon(i,:)==colonpoly(2,:);
end
3 Commenti
Steven Lord
il 11 Mar 2021
It's not at all clear to me what you mean by "similarity". I think you understand what you're trying to do, but we aren't familiar with your goal. Please explain starting with the background of your task.
For your first row, for example, the entry with ID 1, with what is it being compared that gives an 80% similarity rate? Is that good or bad? Cinderella's foot being 80% similar to the glass slipper is a good thing. An innocent person's face matching 80% to the face of a wanted person is not so good.
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!