I have 2 different excel files, each one contains different data, one of them has the next columns:
No. | Name | Xvalue | Yvalue |
And the other has the columns:
No. | Average | highestvalue | lowerValue
I want to merge this data based on the value of the number or the name, in the first excel i can have data from No. 1 to No. 50 but in the second i can have only data for No. 5, 9, 10, 20,
I want to merge my list to fit this data with the first file correspondig to the same value of No. or the same name.
How can i do that? I've tried this:
pd.merge(excel1, excel2)
But it doesn't fit my data