I’d like to display all 9 columns of a DataFrame in Jupyter notebook, but the system decides to omit the 2 rightmost columns because it thinks there is a lack of space.
I know I can show all columns with the show(dataframe, allcols=true) construct, but the resulting table is less elegant than the one I get without using show().
Thanks, that did the trick!
[Based on limited trial and error, I suspect the default is ENV["COLUMNS"]=80…, which reminds me of good old FORTRAN coding template sheets… that I used as a student to hand in hand-written FORTRAN code to the punchers… :-o ]