I am running \'describe()\' on a dataframe and getting summaries of only int columns (pandas 14.0).
The documentation says that for object columns frequency of most
pd.options.display.max_columns = DATA.shape[1] will work.
pd.options.display.max_columns = DATA.shape[1]
Here DATA is a 2d matrix, and above code will display stats vertically.
DATA