Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Nov 11, 2024
1 parent 9dc90af commit 441de81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/techref/array_dtypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ supports most of the numeric dtypes provided by NumPy, pandas, and PyArrow.
- `pandas.Float32`, `pandas.Float64`
- `pyarrow.float32`, `pyarrow.float64`

```{note}
:::{note}

1. Currently, `numpy.float16`, `numpy.longdouble` and `pyarrow.float16` are not
supported.
2. For 3-D {class}`xarray.DataArray` objects representing raster images, only 8-bit
unsigned integers (i.e., `numpy.uint8`) are supported.
```
:::

````{example}
:::{tip} Examples
```python
# A list of integers
[1, 2, 3]
Expand All @@ -56,7 +56,7 @@ pd.Series([1, 2, 3], dtype="float64[pyarrow]")
# A PyArrow array with pyarrow.uint8 dtype
pa.array([1, 2, 3], type=pa.uint8())
```
````
:::

## String Dtypes

Expand Down

0 comments on commit 441de81

Please sign in to comment.