开始使用免费开始使用

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.

本练习是课程的一部分

Introduction to Julia

查看课程

练习说明

  • 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.

交互式实操练习

通过完成这段示例代码来试试这个练习。

# 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(____)
编辑并运行代码