NVIDIA / NVIDIA/cudf

[FEA] cudf.Series.add support for NaN

Open
#12,719 0 comments 0 reactions 0 assignees View on GitHub
0 - Backlog feature request Python
Dominant language
C++
Stars
9.8k
Forks
1.1k
Avg merge
3d 6m
Merged PRs (30d)
278

Description

**Is your feature request related to a problem? Please describe.**
working with `import cudf as pd`

**Describe the solution you'd like**
```
>>> import cudf, pandas
>>> cudf.__version__
'23.02.00a+310.g58e0fde346'
>>> pandas.__version__
'1.5.3'
>>> import numpy as np
>>> cudf.Series([1,1, np.NaN, 9]).add([0, 1, 1, np.NaN])
NotImplemented
>>> pandas.Series([1,1, np.NaN, 9]).add([0, 1, 1, np.NaN])
0 1.0
1 2.0
2 NaN
3 NaN
dtype: float64
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.