-
-
Save Protonk/5064862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entropy.df <- subset( | |
tickets.df[ | |
1:nrow( | |
tickets.df | |
) | |
%in% which( | |
outer( | |
subset( | |
tickets.df, | |
period == "hadean" | |
)$user, | |
subset( | |
tickets.df, | |
period == "prehadean" | |
)$user, | |
"==" | |
), | |
arr.ind=TRUE | |
), | |
], period == "hadean" | |
) | |
#Ookay, this isn't working. It should be pulling out all tickets with period "hadean" with a userID matching a userID from the tickets with period "prehadean". It returns a null. I can /see/ userIDs present in both. The fuck? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment