python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Find rows that are identical in one column but not another
There should be a fairly simple solution to this but it's giving me trouble. I have a DF similar to this:
> df <- data.frame(name = c("george", "george", "george", ...
Bradley Allf
Votes: 0
Answers: 2
Any faster option rather than Base.unique() in Julia?
I have a 2-dimensional matrix that I want to find its unique rows. For example, if
M=[1 2 3;
4 7 8;
1 2 3;
0 2 3]
then, the output of the Base.unique command,
Base.unique(M, dims=1)
is the ...

CLAUDE
Votes: 0
Answers: 1
Uniqueness of UUID substring
We track an internal entity with java.util generated UUID. New requirement is to pass this object to a third party who requires a unique identifier with a max character limit of 11. In lieu of generat...
Jimmy3Sticks
Votes: 0
Answers: 1
Return indices of non-NaN uniques in np.array of dtype=object
How do I return a list of indices corresponding to uniques in a np.array of dtype=object?
Analogous to:
arr = np.array(["one", "one", 2, 2])
result = np.unique(arr, return_inverse=...

Novorodnas
Votes: 0
Answers: 1