Why print(pd.data[‘sat_results’].head()) code shows an error. But code works well with print(data[‘sat_results’].head())
The following Error:
AttributeErrorTraceback (most recent call last)
in ()
----> 1 print(pd.data[“sat_results”].head())
AttributeError: ‘module’ object has no attribute ‘data’