Skip to content

Commit

Permalink
fix rownames argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanetteclark committed Sep 18, 2024
1 parent dea912f commit 577b1a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm/scripts/search.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ main <- function(){
existing_citations <- get_metrics_citations()
new_citations <- anti_join(found_citations, existing_citations, by = c("dataset_id" = "target_id", "article_id" = "source_id"))
if (nrow(new_citations) > 0) {
write.csv(new_citations, fp, row_names = FALSE)
write.csv(new_citations, fp, row.names = FALSE)
} else {
writeLines("No new citations found.", fp)
}
Expand Down

0 comments on commit 577b1a8

Please sign in to comment.