Skip to content

Commit

Permalink
chore: update links
Browse files Browse the repository at this point in the history
  • Loading branch information
mesejo committed Feb 18, 2025
1 parent f5a439d commit f967fa3
Show file tree
Hide file tree
Showing 7 changed files with 341 additions and 345 deletions.
256 changes: 128 additions & 128 deletions docs/api-reference/expression-generic.mdx

Large diffs are not rendered by default.

80 changes: 41 additions & 39 deletions docs/api-reference/expression-numeric.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Numeric and Boolean expressions
---
title: 'Numeric and Boolean expressions'
---

Integer, floating point, decimal, and boolean expressions.

# NumericColumn
# <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn">NumericColumn</span>

```python
NumericColumn(self, arg)
Expand Down Expand Up @@ -42,7 +44,7 @@ NumericColumn(self, arg)
| [tan](#letsql.vendor.ibis.expr.types.numeric.NumericColumn.tan) | Compute the tangent of `self`. |
| [var](#letsql.vendor.ibis.expr.types.numeric.NumericColumn.var) | Return the variance of a numeric column. |

### abs
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.abs">abs</span>

```python
abs()
Expand All @@ -69,7 +71,7 @@ Return the absolute value of `self`.
└─────────────┘
```

### acos
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.acos">acos</span>

```python
acos()
Expand All @@ -95,7 +97,7 @@ Compute the arc cosine of `self`.
└──────────────┘
```

### asin
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.asin">asin</span>

```python
asin()
Expand All @@ -121,7 +123,7 @@ Compute the arc sine of `self`.
└──────────────┘
```

### atan
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.atan">atan</span>

```python
atan()
Expand All @@ -147,7 +149,7 @@ Compute the arc tangent of `self`.
└──────────────┘
```

### atan2
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.atan2">atan2</span>

```python
atan2(other)
Expand All @@ -173,7 +175,7 @@ Compute the two-argument version of arc tangent.
└──────────────────┘
```

### bucket
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.bucket">bucket</span>

```python
bucket(
Expand Down Expand Up @@ -203,7 +205,7 @@ Compute a discrete binning of a numeric array.
|------|---------------------------------------------|---------------------|
| | [IntegerColumn](%60letsql.vendor.ibis.expr.types.numeric.IntegerColumn%60) | A categorical column expression |

### ceil
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.ceil">ceil</span>

```python
ceil()
Expand Down Expand Up @@ -231,7 +233,7 @@ Return the ceiling of `self`.
└──────────────┘
```

### corr
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.corr">corr</span>

```python
corr(right, where=None, how='sample')
Expand All @@ -253,7 +255,7 @@ Return the correlation of two numeric columns.
|------|-------------------------------------------|------------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | The correlation of `left` and `right` |

### cos
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.cos">cos</span>

```python
cos()
Expand All @@ -279,7 +281,7 @@ Compute the cosine of `self`.
└─────────────┘
```

### cot
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.cot">cot</span>

```python
cot()
Expand All @@ -305,7 +307,7 @@ Compute the cotangent of `self`.
└─────────────┘
```

### cov
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.cov">cov</span>

```python
cov(right, where=None, how='sample')
Expand All @@ -327,7 +329,7 @@ Return the covariance of two numeric columns.
|------|-------------------------------------------|-----------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | The covariance of `self` and `right` |

### degrees
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.degrees">degrees</span>

```python
degrees()
Expand Down Expand Up @@ -356,7 +358,7 @@ Compute the degrees of `self` radians.
└─────────────────┘
```

### exp
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.exp">exp</span>

```python
exp()
Expand Down Expand Up @@ -389,7 +391,7 @@ Compute $e^\texttt{self}$.
└─────────────┘
```

### floor
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.floor">floor</span>

```python
floor()
Expand Down Expand Up @@ -417,7 +419,7 @@ Return the floor of an expression.
└───────────────┘
```

### ln
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.ln">ln</span>

```python
ln()
Expand All @@ -443,7 +445,7 @@ Compute $\ln\left(\texttt{self}\right)$.
└────────────┘
```

### log
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.log">log</span>

```python
log(base=None)
Expand Down Expand Up @@ -499,7 +501,7 @@ Compute $\log_{\texttt{base}}\left(\texttt{self}\right)$.
└─────────────────┘
```

### log10
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.log10">log10</span>

```python
log10()
Expand All @@ -525,7 +527,7 @@ Compute $\log_{10}\left(\texttt{self}\right)$.
└───────────────┘
```

### log2
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.log2">log2</span>

```python
log2()
Expand All @@ -552,7 +554,7 @@ Compute $\log_{2}\left(\texttt{self}\right)$.
└──────────────┘
```

### mean
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.mean">mean</span>

```python
mean(where=None)
Expand All @@ -572,7 +574,7 @@ Return the mean of a numeric column.
|------|--------------------------------------------|----------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | The mean of the input expression |

### negate
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.negate">negate</span>

```python
negate()
Expand Down Expand Up @@ -604,7 +606,7 @@ Negate a numeric expression.
└────────────────┘
```

### radians
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.radians">radians</span>

```python
radians()
Expand Down Expand Up @@ -632,7 +634,7 @@ Compute radians from `self` degrees.
└─────────────────┘
```

### round
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.round">round</span>

```python
round(digits=None)
Expand Down Expand Up @@ -693,7 +695,7 @@ Round values to an indicated number of decimal places.
└──────────────────┘
```

### sign
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.sign">sign</span>

```python
sign()
Expand All @@ -720,7 +722,7 @@ Return the sign of the input.
└──────────────┘
```

### sin
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.sin">sin</span>

```python
sin()
Expand All @@ -746,7 +748,7 @@ Compute the sine of `self`.
└─────────────┘
```

### sqrt
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.sqrt">sqrt</span>

```python
sqrt()
Expand All @@ -773,7 +775,7 @@ Compute the square root of `self`.
└──────────────┘
```

### std
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.std">std</span>

```python
std(where=None, how='sample')
Expand All @@ -794,7 +796,7 @@ Return the standard deviation of a numeric column.
|------|----------------------------------------------|--------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | Standard deviation of `arg` |

### sum
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.sum">sum</span>

```python
sum(where=None)
Expand All @@ -814,7 +816,7 @@ Return the sum of a numeric column.
|------|---------------------------------------------|---------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | The sum of the input expression |

### tan
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.tan">tan</span>

```python
tan()
Expand All @@ -840,7 +842,7 @@ Compute the tangent of `self`.
└─────────────┘
```

### var
### <span id="letsql.vendor.ibis.expr.types.numeric.NumericColumn.var">var</span>

```python
var(where=None, how='sample')
Expand All @@ -861,7 +863,7 @@ Return the variance of a numeric column.
|------|----------------------------------------------|--------------------|
| | [NumericScalar](%60letsql.vendor.ibis.expr.types.numeric.NumericScalar%60) | Standard deviation of `arg` |

# IntegerColumn
# <span id="letsql.vendor.ibis.expr.types.numeric.IntegerColumn">IntegerColumn</span>

```python
IntegerColumn(self, arg)
Expand All @@ -876,37 +878,37 @@ IntegerColumn(self, arg)
| [bit_xor](#letsql.vendor.ibis.expr.types.numeric.IntegerColumn.bit_xor) | Aggregate the column using the bitwise exclusive or operator. |
| [to_timestamp](#letsql.vendor.ibis.expr.types.numeric.IntegerColumn.to_timestamp) | |

### bit_and
### <span id="letsql.vendor.ibis.expr.types.numeric.IntegerColumn.bit_and">bit_and</span>

```python
bit_and(where=None)
```

Aggregate the column using the bitwise and operator.

### bit_or
### <span id="letsql.vendor.ibis.expr.types.numeric.IntegerColumn.bit_or">bit_or</span>

```python
bit_or(where=None)
```

Aggregate the column using the bitwise or operator.

### bit_xor
### <span id="letsql.vendor.ibis.expr.types.numeric.IntegerColumn.bit_xor">bit_xor</span>

```python
bit_xor(where=None)
```

Aggregate the column using the bitwise exclusive or operator.

### to_timestamp
### <span id="letsql.vendor.ibis.expr.types.numeric.IntegerColumn.to_timestamp">to_timestamp</span>

```python
to_timestamp(unit='s')
```

# FloatingColumn
# <span id="letsql.vendor.ibis.expr.types.numeric.FloatingColumn">FloatingColumn</span>

```python
FloatingColumn(self, arg)
Expand All @@ -919,15 +921,15 @@ FloatingColumn(self, arg)
| [isinf](#letsql.vendor.ibis.expr.types.numeric.FloatingColumn.isinf) | Return whether the value is infinity. |
| [isnan](#letsql.vendor.ibis.expr.types.numeric.FloatingColumn.isnan) | Return whether the value is NaN. |

### isinf
### <span id="letsql.vendor.ibis.expr.types.numeric.FloatingColumn.isinf">isinf</span>

```python
isinf()
```

Return whether the value is infinity.

### isnan
### <span id="letsql.vendor.ibis.expr.types.numeric.FloatingColumn.isnan">isnan</span>

```python
isnan()
Expand Down
Loading

0 comments on commit f967fa3

Please sign in to comment.