IsNullMask / Boolean Layer

Create boolean mask columns indicating null values in specified columns. Similar to pandas isna() or R's is.na(). Returns True for null values and False otherwise.

Common applications:

  • Missing data analysis
  • Data quality assessment
  • Null pattern detection
  • Data cleaning workflows
  • Input validation

Example:

IndexColumn ANull Mask
01false
1nulltrue
23false
3nulltrue
45false
Table
0
0
Table

Mask

[, ...]

List of columns to check for null values. Each generates a separate boolean mask column. Useful for:

  • Parallel null checking of multiple fields
  • Bulk data quality assessment
  • Creating missing data profiles
  • Multi-column validation

At least one mask must be specified.

Select

column

The column to check for null values. Any data type is supported. Common targets:

  • Required fields for validation
  • Sensor readings for quality control
  • Survey responses for completion analysis
  • Time series for gap detection
  • Measurement data for reliability assessment

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.