ComenzarEmpieza gratis

Suffixes and indicators

Well, it seems the scatter plot hasn't settled any wagers. And source data in the merged data frame isn't as helpful as you expected: it's hard to tell what data is current and what is from the past when players were drafted. merged data frame

It's time to use some of those optional parameters for .merge() and clarify the data. current and draft are still available from the last exercise.

Este ejercicio forma parte del curso

Pandas Joins for Spreadsheet Users

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Merge data frames and view the result
players = ____.merge(draft, how='outer', ____=True,  ____='player_id')
print(____.head())
Editar y ejecutar código