ПочатиПочніть безкоштовно

Describe it to me

The describe() function provides a nice summary of a DataFrame. However, it can return more information than you want. Luckily, you can decide what exactly you want it to return!

In this exercise, you'll be working with the chocolates DataFrame. It contains information about different chocolate bars, the company that produced them, information about the bean, ratings, and other important data. Let's see if you can use the describe() functions to print out only certain features of the DataFrame! What are you able to learn about its columns?

DataFrames package and the chocolates DataFrame have been loaded for you.

Ця вправа є частиною курсу

Data Manipulation in Julia

Переглянути курс

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

# Describe chocolates using only the min, max, and number of missing values
____(____, ____, ____, ____)
Редагувати та запускати код