Title
'''Pandas is used to gather data sets through its DataFrames implementation'''
import pandas as pd
df = pd.read_json('files/co2emission.json')
print(df)
print(df[['Make','Model','Engine Size']].to_string(index=False))
print(df[['Make']])
print()
print(df[['Make','Model']].to_string(index=False))
print(df.sort_values(by=['Engine Size']))
print()
print(df.sort_values(by=['Engine Size'], ascending=False))