MathOperations¶
Namespace for mathematical operations.
This class cannot be instantiated directly. It can only be accessed using the math attribute of a cell.
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1]);
out column.transform((cell) -> cell.math.abs());
}
Stub code in MathOperations.sdsstub
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | |
abs¶
Get the absolute value.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The absolute value. |
Examples:
pipeline example {
val column = Column("a", [1, -2, null]);
out column.transform((cell) -> cell.math.abs());
}
acos¶
Get the inverse cosine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse cosine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.acos());
}
acosh¶
Get the inverse hyperbolic cosine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse hyperbolic cosine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.acosh());
}
asin¶
Get the inverse sine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse sine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.asin());
}
asinh¶
Get the inverse hyperbolic sine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse hyperbolic sine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.asinh());
}
atan¶
Get the inverse tangent.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse tangent. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.atan());
}
atanh¶
Get the inverse hyperbolic tangent.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The inverse hyperbolic tangent. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.atanh());
}
cbrt¶
Get the cube root.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The cube root. |
Examples:
pipeline example {
val column = Column("a", [1, 8, null]);
out column.transform((cell) -> cell.math.cbrt());
}
ceil¶
Round up to the nearest integer.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The rounded value. |
Examples:
pipeline example {
val column = Column("a", [1.1, 3.0, null]);
out column.transform((cell) -> cell.math.ceil());
}
cos¶
Get the cosine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The cosine. |
Examples:
from math import pi
pipeline example {
val column = Column("a", [0, pi / 2, pi, 3 * pi / 2, null]);
out column.transform((cell) -> cell.math.cos());
}
cosh¶
Get the hyperbolic cosine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The hyperbolic cosine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.cosh());
}
degreesToRadians¶
Convert degrees to radians.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The value in radians. |
Examples:
pipeline example {
val column = Column("a", [0, 90, 180, 270, null]);
out column.transform((cell) -> cell.math.degreesToRadians());
}
Stub code in MathOperations.sdsstub
exp¶
Get the exponential.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The exponential. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.exp());
}
floor¶
Round down to the nearest integer.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The rounded value. |
Examples:
pipeline example {
val column = Column("a", [1.1, 3.0, null]);
out column.transform((cell) -> cell.math.floor());
}
ln¶
Get the natural logarithm.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The natural logarithm. |
Examples:
from math import e
pipeline example {
val column = Column("a", [0, 1, e, null]);
out column.transform((cell) -> cell.math.ln());
}
log¶
Get the logarithm to the specified base.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base |
Float |
The base of the logarithm. Must be positive and not equal to 1. | - |
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The logarithm. |
Examples:
from math import e
pipeline example {
val column1 = Column("a", [0, 1, e, null]);
out column1.transform((cell) -> cell.math.log(e));
}
pipeline example {
val column2 = Column("a", [0, 1, 10, null]);
out column2.transform((cell) -> cell.math.log(10));
}
log10¶
Get the common logarithm (base 10).
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The common logarithm. |
Examples:
pipeline example {
val column = Column("a", [0, 1, 10, null]);
out column.transform((cell) -> cell.math.log10());
}
radiansToDegrees¶
Convert radians to degrees.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The value in degrees. |
Examples:
from math import pi
pipeline example {
val column = Column("a", [0, pi / 2, pi, 3 * pi / 2, null]);
out column.transform((cell) -> cell.math.radiansToDegrees());
}
Stub code in MathOperations.sdsstub
roundToDecimalPlaces¶
Round to the specified number of decimal places.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
decimalPlaces |
Int |
The number of decimal places to round to. Must be greater than or equal to 0. | - |
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The rounded value. |
Examples:
pipeline example {
val column = Column("a", [0.999, 1.123, 3.456, null]);
out column.transform((cell) -> cell.math.roundToDecimalPlaces(0));
out column.transform((cell) -> cell.math.roundToDecimalPlaces(2));
}
Stub code in MathOperations.sdsstub
roundToSignificantFigures¶
Round to the specified number of significant figures.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
significantFigures |
Int |
The number of significant figures to round to. Must be greater than or equal to 1. | - |
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The rounded value. |
Examples:
pipeline example {
val column = Column("a", [0.999, 1.123, 3.456, null]);
out column.transform((cell) -> cell.math.roundToSignificantFigures(1));
out column.transform((cell) -> cell.math.roundToSignificantFigures(2));
}
Stub code in MathOperations.sdsstub
sign¶
Get the sign (-1 if negative, 0 for zero, and 1 if positive).
Note that IEEE 754 defines a negative zero (-0) and a positive zero (+0). This method return a negative zero for -0 and a positive zero for +0.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The sign. |
Examples:
pipeline example {
val column1 = Column("a", [-1, 0, 1, null]);
out column1.transform((cell) -> cell.math.sign());
}
pipeline example {
val column2 = Column("a", [-1.0, -0.0, 0.0, 1.0, null]);
out column2.transform((cell) -> cell.math.sign());
}
sin¶
Get the sine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The sine. |
Examples:
from math import pi
pipeline example {
val column = Column("a", [0, pi / 2, pi, 3 * pi / 2, null]);
out column.transform((cell) -> cell.math.sin());
}
sinh¶
Get the hyperbolic sine.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The hyperbolic sine. |
Examples:
pipeline example {
val column = Column("a", [-1, 0, 1, null]);
out column.transform((cell) -> cell.math.sinh());
}
sqrt¶
Get the square root.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The square root. |
Examples:
pipeline example {
val column = Column("a", [1, 4, null]);
out column.transform((cell) -> cell.math.sqrt());
}
tan¶
Get the tangent.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The tangent. |
Examples:
from math import pi
pipeline example {
val column = Column("a", [0, pi / 4, 3 * pi / 4, null]);
out column.transform((cell) -> cell.math.tan());
}
tanh¶
Get the hyperbolic tangent.
Results:
| Name | Type | Description |
|---|---|---|
cell |
Cell<Any> |
The hyperbolic tangent. |
Examples: