I'm trying to unstack a correlation matrix and print the values, I get something like this with truncation i.e. not all the values are displayed:
corr_pairs = corr_dict['corr'].unstack()
print(corr_pairs)
Assignment Assignment 1.000000
Country/Region 0.242011
Interaction ID 0.000000
Incident ID 0.394528
Contact Last Name 0.667224
...
actual_end_plus_12hr sImplementation on Time Scope -0.209027
sImplementation on Time Met -0.199003
sSuccess Rate Scope -0.208897
sSuccess Rate Met -0.208897
actual_end_plus_12hr 1.000000
Length: 4489, dtype: float64
Whereas I want all the values of the unstacked correlation matrix to be printed without any truncation. Something like this:
corr_pairs = corr_dict['corr'].unstack()
print(corr_pairs)
Assignment Assignment 1.000000
Country/Region 0.242011
Interaction ID 0.000000
Incident ID 0.394528
Contact Last Name 0.667224
actual_end_plus_12hr sImplementation on Time Scope -0.209027
sImplementation on Time Met -0.199003
sSuccess Rate Scope -0.208897
sSuccess Rate Met -0.208897
actual_end_plus_12hr 1.000000
actual_end_plus_12hr sImplementation on Time Scope -0.209027
sImplementation on Time Met -0.199003
sSuccess Rate Scope -0.208897
sSuccess Rate Met -0.208897
actual_end_plus_12hr 1.000000
actual_end_plus_12hr sImplementation on Time Scope -0.209027
sImplementation on Time Met -0.199003
sSuccess Rate Scope -0.208897
sSuccess Rate Met -0.208897
actual_end_plus_12hr 1.000000
actual_end_plus_12hr sImplementation on Time Scope -0.209027
sImplementation on Time Met -0.199003
sSuccess Rate Scope -0.208897
sSuccess Rate Met -0.208897
actual_end_plus_12hr 1.000000
Length: 4489, dtype: float64
How can I do that ?