I like to create one correlation table which contains two correlation coefficents. (pearson and spearman)
I know that I can create with df.corr(method='spearman') a correlation table.
Do you know if it's possible that the same table contains the 'pearson' and 'spearman' coefficent? Like the pearson is underneath the spearman coefficent in brackets.
Thank you
For example:

(pearson_coeff, spearman_coeff), for each cell? - Gian Segato