ComenzarEmpieza gratis

Deselecting specific columns

You can also drop or deselect columns by prepending the character vector of column names with the - or ! operators. For e.g., dt[, -c("col1", "col2")] or dt[, !c("col1", "col2")] would both return all columns except col1 and col2.

Este ejercicio forma parte del curso

Data Manipulation with data.table in R

Ver curso

Instrucciones del ejercicio

Deselect the columns start_terminal and end_terminal from batrips.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Deselect start_terminal and end_terminal columns
drop_terminal_cols <- ___
drop_terminal_cols
Editar y ejecutar código