Learn R Programming

matriz (version 1.0.1)

truncate: Truncate a Data Frame or Matrix

Description

Remove all rows from a literature matrix but preserve the general structure. Mimics SQL's TRUNCATE operation by clearing data while preserving structure.

Usage

truncate(.data, keep_rows = FALSE)

Value

An empty data frame or matrix with the same structure as the input

Arguments

.data

A data frame or matrix to be truncated

keep_rows

Logical. If TRUE, replaces non-NA values with NA instead of removing all data

Examples

Run this code
# Completely empty a data frame
df <- data.frame(x = 1:3, y = 4:6)
truncate(df)

# Replace non-NA values with NA while keeping structure
truncate(df, keep_rows = TRUE)

Run the code above in your browser using DataLab