Learn R Programming

keyed (version 0.2.0)

unwatch: Stop watching a keyed data frame

Description

Removes the watched attribute. Dplyr verbs will no longer auto-stamp.

Usage

unwatch(.data)

Value

.data without the watched attribute.

Arguments

.data

A data frame.

See Also

watch()

Examples

Run this code
df <- key(data.frame(id = 1:3, x = 1:3), id) |> watch()
df <- unwatch(df)

Run the code above in your browser using DataLab