1. Learn
  2. /
  3. Courses
  4. /
  5. Intermediate Julia

Connected

Exercise

Filtering DataFrames

The filter function is incredibly useful to quickly obtain a subset of data based on a certain condition. You can filter on vectors, tuples, DataFrames, and other data structures. However, in these exercises, we will focus on tuples and DataFrames.

The syntax for filter is:

filter(source => f::Function, df)

For a DataFrame: - source is the column to filter on - f::Function is our filter condition as an anonymous function - df is the DataFrame to filter on

Instructions 1/3

undefined XP
    1
    2
    3
  • Create a tuple nums containing the values one through eight.
  • Filter the tuple nums to return only the even values.