I'm a data newbie. I've been having trouble seeing the full results of a small JSON file downloaded off of github. I inputted
import pandas as pd
import json
from pandas.io.json import json_normalize
data = pd.read_json('~/bloc/d3_contributor_stats.json')
print pd.DataFrame.from_dict(data, orient='columns')
which is returning
author total \
0 {u'following_url': u'https://api.github.com/us... 1
1 {u'following_url': u'https://api.github.com/us... 1
2 {u'following_url': u'https://api.github.com/us... 1
3 {u'following_url': u'https://api.github.com/us... 1
and also cutting off middle values like so:
27 {u'following_url': u'https://api.github.com/us... 1
28 {u'following_url': u'https://api.github.com/us... 1
29 {u'following_url': u'https://api.github.com/us... 1
.. ... ...
70 {u'following_url': u'https://api.github.com/us... 3
71 {u'following_url': u'https://api.github.com/us... 3
72 {u'following_url': u'https://api.github.com/us... 3
73 {u'following_url': u'https://api.github.com/us... 3
How can I expand the table to show all of the data, or delete a column like 'following_url' so that some of the other data displays?