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 3f7e62b commit 4d93e3fCopy full SHA for 4d93e3f
src/abstractdataframe/abstractdataframe.jl
@@ -621,17 +621,6 @@ unique!(df) # modifies df
621
"""
622
(unique, unique!)
623
624
-function nonuniquekey(df::AbstractDataFrame)
625
- # Here's another (probably a lot faster) way to do `nonunique`
626
- # by grouping on all columns. It will fail if columns cannot be
627
- # made into PooledDataVector's.
628
- gd = groupby(df, _names(df))
629
- idx = [1:length(gd.idx)][gd.idx][gd.starts]
630
- res = fill(true, nrow(df))
631
- res[idx] = false
632
- res
633
-end
634
-
635
# Count the number of missing values in every column of an AbstractDataFrame.
636
function colmissing(df::AbstractDataFrame) # -> Vector{Int}
637
nrows, ncols = size(df)
0 commit comments