I have 2 pandas dataframes with names and scores.
The first dataframe is is in the form:
df_score_1
        A   B   C   D   
    A   0   1   2   0   
    B   1   0   0   2   
    C   2   0   0   3   
    D   0   2   3   0   
where
df_score_1.index
Index(['A', 'B', 'C', 'D'],dtype='object')
The second dataframe is from a text file with three columns which does not display zeros but only positive scores (or non-zero values)
df_score_2
A B 1
A C 1
A D 2
B C 5
B D 1
The goal is to transform df_score_2 into the form df_score_1 using pandas commands. The original form is from a networkx output nx.to_pandas_dataframe(G) line.
I've tried multi-indexing and the index doesn't display the form I would like. Is there an option when reading in a text file or a function to transform the dataframe after?
 
     
    