Hi all,
My requirement is simple - I just want to print a Pandas dataframe as a whole. BUT, I do not wish to print the index associated with it.
It is just that I want to print one column, let's say time and not date inclusive.
To give you better clarity, this is how my dataframe looks like at the moment:
User ID Enter Time Activity Number
0 567 2014-05-06 00:09:00 777
1 567 2014-05-06 00:18:00 674
2 567 2014-05-06 00:49:00 4567
I want to print this as follows:
User ID Enter Time Activity Number
567 00:09:00 777
567 00:18:00 647
567 00:49:00 4567
How do I go about doing this? Cheers!