Skip to content

Commit

Permalink
Merge 5e39e4e into aaa4dd0
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed May 26, 2020
2 parents aaa4dd0 + 5e39e4e commit cec5908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractdataframe/abstractdataframe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,6 @@ julia> disallowmissing(df)
├─────┼───────┤
│ 1 │ 1 │
│ 2 │ 2 │
```
julia> df = DataFrame(a=[1,missing])
2×2 DataFrame
Expand All @@ -1639,6 +1638,7 @@ julia> disallowmissing(df, error=false)
├─────┼─────────┼───────┤
│ 1 │ 1 │ 1 │
│ 2 │ missing │ 2 │
```
"""
function Missings.disallowmissing(df::AbstractDataFrame,
cols::Union{ColumnIndex, MultiColumnIndex}=:;
Expand Down

0 comments on commit cec5908

Please sign in to comment.