Skip to content

Commit

Permalink
fill_na :tried ; unclear format issue, no bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed Aug 3, 2023
1 parent e449b4d commit fef0e8f
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2096,18 +2096,6 @@ julia> df = DataFrame(dt1=[missing, 0.2, missing, missing, 1, missing, 5, 6], dt
julia> @chain df begin
@mutate(dt1 = ~fill_na(dt1, "locf"))
@mutate(dt2 = ~fill_na(dt2, "nocb"))
end
8×2 DataFrame
Row │ dt1 dt2
│ Float64? Float64?
─────┼──────────────────────
1 │ missing 0.3
2 │ 0.2 3.0
3 │ 0.2 3.0
4 │ 0.2 3.0
5 │ 1.0 5.0
6 │ 1.0 5.0
7 │ 5.0 6.0
8 │ 6.0 missing
end;
```
"""

0 comments on commit fef0e8f

Please sign in to comment.