Practice 1 1
Practice 1 1
with Pandas
Objective
Write a Pandas program to create and display a DataFrame from the following
dictionary data which has index labels.
'score': [12.5, 9, 16.5, np.nan, 9, 20, 14.5, np.nan , 8, 19, 20, 16],
'qualify': ['yes', 'no', 'yes', 'no', 'no', 'yes', 'yes', 'no',np.nan , 'yes', 'yes', 'yes']}
labels = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']
Instructions
-CODEQUEST-