I have two Dataframes with 3 columns and 7 rows each,
A = {'col1': [20, 3, 45.6, 2, 500, 3e45, nan], 'col2': [nan, 90, 1e3, nan, 78, 6, nan],'col3':[25, 7e56, nan, nan, 23, 0.4, 78.04]}
B = {'a': [1, 24, 30, nan, nan, 56, 2.5], 'b': [100, nan, 10, 78.09, 1e29, 0.84, nan],'c': [nan, 4.6, nan, nan, 9e45, 0.2, nan] }
df_A = pd.DataFrame(data=a)
df_B = pd.DataFrame(data=b)
I’d like to iterate over the two Dataframes in order to do a scatter plot of the first column of df_A (col1) vs the first column of df_B (a), then the second column of A vs the second of B etc. And each plot should have the name of the columns as labels of the axis.
I tried with this, but it gives me as error the fact that x and y aren't of the same size.
for col in df_A:
plt.scatter(df_A[col], df_B[col], label=col)
In the end, I solved it like this:
x_name = df_A.columns
y_name = df_B.columns
for i,col in enumerate(df_A.columns):
plt.scatter(df_A.iloc[:,i], df_B.iloc[:,i])
plt.xlabel(x_name[i])
plt.ylabel(y_name[i])
plt.show()