Skip to contents

Update Tabulator values using a conditional system

Usage

tabulator_update_where(
  proxy,
  col,
  value,
  whereCol,
  whereValue,
  operator = "==",
  chunk_size = 1000
)

Arguments

proxy

A Tabulator proxy object

col

The column to update

value

The new value to set

whereCol

The column to check for the condition

whereValue

The value to compare against in the condition

operator

The comparison operator (e.g., ">", "<", "==", etc.)

chunk_size

The number of rows to update in each chunk (default: 1000)