We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating a cudf.Series or cudf.DataFrame with a Series of only None values results in incorrect row-length
None
Repro #1:
import cudf print(cudf.Series([None, None, None]))
Result:
<empty Series of dtype=float64>
The above should be a Series of length 3
Repro #2:
df = cudf.DataFrame() df['a'] = [None, None, None] df
<cudf.DataFrame ncols=1 nrows=0 >
The above should be a df with 3 rows.
The text was updated successfully, but these errors were encountered:
kkraus14
No branches or pull requests
Creating a cudf.Series or cudf.DataFrame with a Series of only
None
values results in incorrect row-lengthRepro #1:
Result:
The above should be a Series of length 3
Repro #2:
Result:
The above should be a df with 3 rows.
The text was updated successfully, but these errors were encountered: