×
×
Correct!
Insert the correct syntax for specifying that the plot should be of type 'scatter'.
df.plot(@(16), x = 'Duration', y = 'Calories')
df.plot(kind = 'scatter', x = 'Duration', y = 'Calories')
df.plot(kind = "scatter", x = 'Duration', y = 'Calories')
df.plot(kind='scatter', x = 'Duration', y = 'Calories')
df.plot(kind="scatter", x = 'Duration', y = 'Calories')
df.plot(kind= 'scatter', x = 'Duration', y = 'Calories')
df.plot(kind= "scatter", x = 'Duration', y = 'Calories')
df.plot(kind ='scatter', x = 'Duration', y = 'Calories')
df.plot(kind ="scatter", x = 'Duration', y = 'Calories')
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 22 exercises.
Are you sure you want to continue?