add findcols #2581
Triggered via pull request
October 18, 2023 09:07
Status
Failure
Total duration
1h 41m 8s
Artifacts
–
ci.yml
on: pull_request
Documentation
7m 17s
Matrix: test
Annotations
4 errors and 5 warnings
Documentation:
src/abstractdataframe/abstractdataframe.jl#L3264
doctest failure in ~/work/DataFrames.jl/DataFrames.jl/src/abstractdataframe/abstractdataframe.jl:3264-3277
```jldoctest
julia> df = DataFrame(a=[1, missing], b=[2, 3], c=[missing, 4])
2×3 DataFrame
Row │ a b c
│ Int64? Int64 Int64?
─────┼─────────────────────────
1 │ 1 2 missing
2 │ missing 3 4
julia> findcols(x -> any(ismissing, x), df)
2-element Vector{Int64}:
1
3
```
Subexpression:
df = DataFrame(a=[1, missing], b=[2, 3], c=[missing, 4])
Evaluated output:
2×3 DataFrame
Row │ a b c
│ Int64? Int64 Int64?
─────┼─────────────────────────
1 │ 1 2 missing
2 │ missing 3 4
Expected output:
2×3 DataFrame
Row │ a b c
│ Int64? Int64 Int64?
─────┼─────────────────────────
1 │ 1 2 missing
2 │ missing 3 4
julia> findcols(x -> any(ismissing, x), df)
2-element Vector{Int64}:
1
3
diff =
Warning: Diff output requires color.
2×3 DataFrame
Row │ a b c
│ Int64? Int64 Int64?
─────┼─────────────────────────
1 │ 1 2 missing
2 │ missing 3 4
julia> findcols(x -> any(ismissing, x), df)
2-element Vector{Int64}:
1
34
|
Documentation
Process completed with exit code 1.
|
Julia nightly - ubuntu-latest - x64 - pull_request
Process completed with exit code 1.
|
Julia 1 - windows-latest - x86 - pull_request
Process completed with exit code 1.
|
Documentation
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Julia nightly - ubuntu-latest - x64 - pull_request
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Julia 1.6 - ubuntu-latest - x64 - pull_request
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, codecov/codecov-action@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Julia 1 - ubuntu-latest - x64 - pull_request
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, codecov/codecov-action@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Julia 1 - windows-latest - x86 - pull_request
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|