I have an array of scores with values like
[[0.66372503]
[0.64839758]
[0.63307013]]
Then, I have an array of scores2 with values like
[[0.65367322]
[0.63598164]
[0.62295124]]
How do I combine them and save into csv like
scores scores2
1 0.66372503 0.65367322
2 0.64839758 0.63598164
3 0.63307013 0.62295124
? Thank you