Created
January 26, 2022 17:36
-
-
Save alexpghayes/d7f2d4854da9c9ce648322b83888504c 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
library(aPPR) | |
library(logger) | |
set.seed(26) | |
log_appender( | |
appender_file( | |
"/paper/to/logfile.log" ## TODO: choose a path to log to | |
), | |
namespace = "aPPR" | |
) | |
log_threshold(TRACE, namespace = "aPPR") | |
tracker <- appr( | |
rtweet_graph(), | |
seed = c("hadleywickham", "gvanrossum"), | |
epsilon = 1e-6 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment