A data analyst is working with the penguins dataset and wants to sort the penguins by bodymassg from least to greatest. When they run the following code the penguin body mass data is not displayed in the correct order.What could be the issue with the code?
a) The 'ascending' parameter should be set to True
b) The 'by' parameter should be set to 'bodymassg'
c) The 'sortvalues' method does not modify the original DataFrame, so the sorted data needs to be reassigned to the variable
d) The 'penguins' DataFrame may not have been imported properly