Crysda::DataCol
Constructors
Instance methods
Check if numeric values are between min and max (inclusive)
Column-level coalesce - return first non-null from self or other
Bin values into discrete intervals (like pandas cut) bins: Array of bin edges (must be sorted ascending) labels: Optional labels for each bin (size must be bins.size - 1) right: If true (default), bins are (left, right], otherwise [left, right)
See Object#hash(hasher)
Quantile-based binning (like pandas qcut) q: Number of quantiles (e.g., 4 for quartiles, 10 for deciles) labels: Optional labels for each bin
Check if strings contain a pattern
Check if strings end with suffix
Replace pattern in strings
Check if strings start with prefix
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO) which can be overridden for custom implementations.
Also see #inspect.