ConstBoolean / New Layer

Create a new column filled with a constant boolean value (True/False). Similar to numpy.full() or pandas.Series with a boolean constant. Useful for creating flag columns, binary indicators, or mask columns for filtering operations.

Table
0
0
Table

Value

bool
true

The boolean Value to fill the column with (true or false). Common uses include: data masking, condition flags, validity indicators, or binary state markers.

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.