Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Feb 25, 2024
1 parent 4e9eb92 commit 0e6096c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions joss-submission-analytics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,11 @@ df <- do.call(dplyr::bind_rows, lapply(software_urls[is_github], function(u) {
repo_pushed = as.Date(repo_pushed)) %>%
dplyr::distinct() %>%
dplyr::mutate(repo_info_obtained = lubridate::today())
if (length(unique(df$repo_url)) != length(df$repo_url)) {
print(length(unique(df$repo_url)))
print(length(df$repo_url))
print(df$repo_url[duplicated(df$repo_url)])
}
stopifnot(length(unique(df$repo_url)) == length(df$repo_url))
dim(df)
Expand Down

0 comments on commit 0e6096c

Please sign in to comment.