I have 3 dataframes with the same formats and columns and each data frame has a column criterion 1. Each data frame is filled with different persons and I want to combine the non-NaN values of this column in 3 data frames and then store it in an excel file such that NaNs are blank value in excel. How can I do this in Python? Moreover, I want to know if there is any row that is filled by at least two people or not?
DataFrame 1
ID Criterion 1
1021 10
1022 NaN
1023 NaN
1024 NaN
1025 NaN
DataFrame 2
ID Criterion 1
1021 NaN
1022 15
1023 NaN
1024 NaN
1025 NaN
DataFrame 3
ID Criterion 1
1021 NaN
1022 NaN
1023 NaN
1024 NaN
1025 34
Joint DataFrame
ID Criterion 1
1021 10
1022 15
1023 NaN
1024 NaN
1025 34
Excel File DataFrame 1
ID Criterion 1
1021 10
1022 15
1023
1024
1025 34
Moreover, I want to know if there is any row that is filled by at least two people or not??