We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc4fe2 commit 06474d0Copy full SHA for 06474d0
src/transforms/satisfies.jl
@@ -42,8 +42,9 @@ Selects the columns that have scientific type `S`.
42
# Examples
43
44
```julia
45
-import DataScienceTraits as DST
46
-Only(DST.Continuous)
+using DataScienceTraits
+
47
+Only(Continuous)
48
```
49
"""
50
Only(S::Type{<:SciType}) = Satisfies(x -> elscitype(x) <: S)
@@ -56,8 +57,9 @@ Selects the columns that don't have scientific type `S`.
56
57
58
59
60
-Except(DST.Categorical)
61
62
+Except(Categorical)
63
64
65
Except(S::Type{<:SciType}) = Satisfies(x -> !(elscitype(x) <: S))
0 commit comments