RandomNumericRange / New Layer
Generate a new column with random values from a specified range (Low
to High
, inclusive). Similar to np.random.randint() for integers or np.random.uniform() for floats. Each row gets a random value within the defined bounds. Values are uniformly distributed across the range.
ColType
oneofSeed
oneofUse system-provided randomization. Each execution produces different boolean values. Suitable for security-sensitive applications, cryptographic operations, simulation, and cases where true randomness is required.
Use seeded random generation for reproducible results within the specified range. Similar to random.seed() in Python or set.seed() in R. Essential for testing and reproducible experiments.
Value
u64Seed value for the random number generator. Same Value
guarantees identical sequence of random numbers within the specified range.
AsColumn
nameProvide an optional name for the new column. If no name is given the system will generate a new name for it. If the provided name matches an already existing column, that column will get replaced by this new one.