Compare column values between columns having the same suffix but different prefix in the name

Would appreciate some optimization tips here.

I have a pandas dataframe which has about 4500 columns and 50000 rows.

There are 2 kind of columns, ones which start with ‘A’ and one which start with ‘B’ .
example columns

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>[id, A.sellervalue, A.buyervalue, A.ratingvalue, B.sellervalue, B.buyervalue, B.ratingvalue]
</code>
<code>[id, A.sellervalue, A.buyervalue, A.ratingvalue, B.sellervalue, B.buyervalue, B.ratingvalue] </code>
[id, A.sellervalue, A.buyervalue, A.ratingvalue, B.sellervalue, B.buyervalue, B.ratingvalue]

I have written this code block which would compare the values for the columns with the same suffix but different prefix (A.sellervalue vs B.sellervalue, A.buyervalue vs B.buyervalue etc) and create a new dataframe which would identify the mismatching row by column name and corresponding values.

This is not very efficient.
I was working if there is any optimization I can do here with either Pandas methods or by using pyspark.
Thank You

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>def find_mismatch_common_columns_values(df, A_cols_without_prefix, B_cols_without_prefix):
set_A_cols_without_prefix = set(A_cols_without_prefix)
set_B_cols_without_prefix = set(B_cols_without_prefix)
common_columns = list(set_otf_cols_without_prefix.intersection(set_dw_cols_without_prefix))
print("n Size of common columns between both ",len(common_columns))
result_list = []
for col in common_columns:
A_col = f'A.{col}'
B_col = f'B.{col}'
for idx, row in df.iterrows():
A_value = row[A_col]
B_value = row[B_col]
if isinstance(A_value, float) :
A_value = round(float(A_value), 6)
if isinstance(B_value, float):
B_value = round(float(B_value), 6)
if A_value != B_value and (not pd.isnull(A_value) and not pd.isnull(B_value)):
result_list.append({
'row': idx,
'column_name': col,
'A_value': A_value,
'B_value': B_value
})
result_df = pd.DataFrame(result_list)
return result_df
</code>
<code>def find_mismatch_common_columns_values(df, A_cols_without_prefix, B_cols_without_prefix): set_A_cols_without_prefix = set(A_cols_without_prefix) set_B_cols_without_prefix = set(B_cols_without_prefix) common_columns = list(set_otf_cols_without_prefix.intersection(set_dw_cols_without_prefix)) print("n Size of common columns between both ",len(common_columns)) result_list = [] for col in common_columns: A_col = f'A.{col}' B_col = f'B.{col}' for idx, row in df.iterrows(): A_value = row[A_col] B_value = row[B_col] if isinstance(A_value, float) : A_value = round(float(A_value), 6) if isinstance(B_value, float): B_value = round(float(B_value), 6) if A_value != B_value and (not pd.isnull(A_value) and not pd.isnull(B_value)): result_list.append({ 'row': idx, 'column_name': col, 'A_value': A_value, 'B_value': B_value }) result_df = pd.DataFrame(result_list) return result_df </code>
def find_mismatch_common_columns_values(df, A_cols_without_prefix, B_cols_without_prefix):
    set_A_cols_without_prefix = set(A_cols_without_prefix)
    set_B_cols_without_prefix = set(B_cols_without_prefix)
    common_columns = list(set_otf_cols_without_prefix.intersection(set_dw_cols_without_prefix))
    
    print("n Size of common columns between both ",len(common_columns))
        
    result_list = []    
    for col in common_columns:
        A_col = f'A.{col}'
        B_col = f'B.{col}'

        for idx, row in df.iterrows():
            
            A_value = row[A_col]
            B_value = row[B_col]
            
            if isinstance(A_value, float) :
                A_value = round(float(A_value), 6)
            
            if isinstance(B_value, float):
                B_value = round(float(B_value), 6)
                
            
            if A_value != B_value and (not pd.isnull(A_value) and not pd.isnull(B_value)):
                result_list.append({
                    'row': idx,
                    'column_name': col,
                    'A_value': A_value,
                    'B_value': B_value
                })

    
    result_df = pd.DataFrame(result_list)
    return result_df

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật