With:
import pandas as pd
df = pd.read_csv(\'pima-data.csv\')
print df.head(2)
the print is automatically formatted across multiple lines:
You need set:
pd.set_option('expand_frame_repr', False)
option_context
context manager has been exposed through the top-level API, allowing you to execute code with given option values. Option values are restored automatically when you exit the with block:
#temporaly set expand_frame_repr
with pd.option_context('expand_frame_repr', False):
print (df)
Pandas documentation.