You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sample_snowball <- function(
users, hops,
direction = c(
"following",
"followed-by",
"both"
)) {
if (hops < 0)
stop("`hops` must be greater than zero.")
direction <- rlang::arg_match(direction)
for (user in users)
if (!users_in_cache(user))
add_users_to_cache(user)
# TODO: respect direction in the future
friends <- cache_get_friends(users)
sample_snowball(friends, hops - 1)
}
The text was updated successfully, but these errors were encountered:
Basically BFS, something along the lines of
The text was updated successfully, but these errors were encountered: