everybody. I learn NumPy and pandas with the Jupyter. When printing, it does not show borderlines and grey blocks. Example:
Should be:
How to solve it? Thank you very much, everybody.
everybody. I learn NumPy and pandas with the Jupyter. When printing, it does not show borderlines and grey blocks. Example:
Should be:
How to solve it? Thank you very much, everybody.
The 'borderlines and grey blocks' view is a rendered HTML version of your dataframe.
You can either just use b
as @Carlos Bergillos mentioned, or use
from IPython.display import display
display(b)
Please see other very similar questions: