НачатьНачать бесплатно

Selecting patterns

Switzerland, Belgium, Ecuador, … these countries and many more are associated with the best chocolate. But does our dataset agree? Let's look at the columns containing information regarding reviews and location!

The DataFrames package and the chocolates dataset have been loaded for you.

Это упражнение является частью курса

Data Manipulation in Julia

Посмотреть курс

Инструкции к упражнению

  • Select columns starting with the letter r and columns ending with location and save the new DataFrame as reviews_locations.
  • Sort reviews_locations in place using the rating column in descending order.

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Select columns starting with r and columns ending with location
reviews_locations = ____(____, ____, ____)

# Sort reviews_locations using the rating column
____(____, ____, rev = true)

println(first(reviews_locations, 5))
Редактировать и запускать код