The default behaviour for df.take()
on Watson Studio Jupyter notebooks does not display the header for the table whereas df.show()
does:
I would like to use df.take()
because the output is much easier on the eye :) - Is it possible to get df.take()
to display the header?
NOTE:
- I don't want to use
show()
. - I want to use
take()
and I wanttake()
to display the header.