시작하기무료로 시작하기

Slicing DataFrames

You are working with the books DataFrame again. This DataFrame had 12 columns, which makes it hard to print any single row. However, the most important information is contained in the first 6 columns of this DataFrame. Therefore, we slice it to select the parts we want and make processing and printing easier.

The books DataFrame is available in your environment as df_books.

이 연습은 강의의 일부입니다

Introduction to Julia

강의 보기

실습형 인터랙티브 연습

이 예제를 이 샘플 코드를 완성하여 풀어보세요.

# Slice the first 6 columns
____ = ____[____, ____]
코드 편집 및 실행