เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

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

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Intermediate Julia

ดูคอร์ส

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Use an anonymous function to filter the tuple nums
nums = ____
filter(____, nums)
แก้ไขและรันโค้ด