From 4ce6e03f3518c7e8b3f6975fc0b05dead5aa3656 Mon Sep 17 00:00:00 2001 From: "ivan.heibi" Date: Fri, 20 Oct 2023 16:29:36 +0200 Subject: [PATCH] rm source prefi --- indexapi_v1.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/indexapi_v1.py b/indexapi_v1.py index e74d215..126341f 100755 --- a/indexapi_v1.py +++ b/indexapi_v1.py @@ -284,19 +284,19 @@ def citations_info(res, *args): row.extend([ # oci value - pre_source + oci_val, + oci_val, # citing - pre_source + citing_id, + citing_id, # cited - pre_source + cited_id, + cited_id, # creation = citing[pub_date] - pre_source + citing_pubdate, + citing_pubdate, # timespan = citing[pub_date] - cited[pub_date] - pre_source + duration, + duration, # journal_sc = compare citing[source_id] and cited[source_id] - pre_source + journal_sc, + journal_sc, # author_sc = compare citing[source_id] and cited[source_id] - pre_source + author_sc + author_sc ])