ComenzarEmpieza gratis

Classic books

Time to use your new DataFrame skills to analyze the books dataset one last time.

You are working for a publisher that wants to spotlight classic books this month. Can you analyze the DataFrame df_books to find the top-rated books published before 1900?

df_books is available in your environment.

Este ejercicio forma parte del curso

Introduction to Julia

Ver curso

Instrucciones del ejercicio

  • Filter the DataFrame to rows where the integer in the original_publication_year column is less than 1900.
  • Sort the df_old_books DataFrame by the average_rating column, sorting from high to low.
  • Print the first five rows of the DataFrame to show the top-rated old books.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Filter to books which were published before 1900
df_old_books = ____(row -> ____, ____)

# Sort these books by rating
df_old_books_sorted = ____(____, "____", rev=____)

# Print the 5 top-rated old books
println(____)
Editar y ejecutar código