[Data_Image_Part_1]
[Data_Imagine_Part_2]
[Column names and index name (forgot to add in image part 1]
I am trying to figure out for this data set:
How to find the major of the students whose FIDN is 30?
My idea:df_test.get_value(30, 'Major')
but I do not know if this is correctHow can I sort all the students by their last name, then by their tuition amount?
My idea:df_test.sort_values( ['LastName', 'tuition'] )
but this does not work and outputs just the column names and index name :(