Skip to content

Commit

Permalink
couple other doc string fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed Aug 18, 2023
1 parent a44833d commit 872ca9e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@ julia> @chain df begin
```
"""

const docstring_fill_missing
const docstring_fill_missing =
"""
@fill_missing(df, columns, method)
Expand Down Expand Up @@ -2192,10 +2192,10 @@ Determine if the given column contains floating-point numbers.
julia> df = DataFrame( b = ["missing", "b", "c"],
c = ["1.1", "2.2", "missing"], d = [missing, missing, "A"]);
julia> is_float(df.b)
julia> is_string(df.b)
true
julia> is_float(df.c)
julia> is_string(df.c)
false
```
"""
Expand All @@ -2217,10 +2217,10 @@ Determine if the given column contains floating-point numbers.
julia> df = DataFrame( b = ["missing", "b", "c"],
c = ["1.1", "2.2", "missing"], d = [missing, missing, 1]);
julia> is_float(df.d)
julia> is_integer(df.d)
true
julia> is_float(df.b)
julia> is_integer(df.b)
false
```
"""
Expand All @@ -2242,10 +2242,10 @@ Determine if the given column contains floating-point numbers.
julia> df = DataFrame( b = ["missing", "b", "c"],
c = ["1.1", "2.2", "missing"], d = [missing, missing, 1]);
julia> is_float(df.d)
julia> is_categorical(df.d)
true
julia> is_float(df.b)
julia> is_categorical(df.b)
false
```
"""

0 comments on commit 872ca9e

Please sign in to comment.