Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion data-raw/jct_001_get_cr_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jct_hybrid_jns <- jct_hybrid_jns_raw |>
"2772-6967", "1097-3702", "2768-7228", "1869-3660", "2666-9587",
"2589-8892", "2321-0656", "2642-3588", "2667-3681", "2590-0315",
"1746-6202", "0943-4747", "2352-3727", "2748-1964", "2516-6042",
"2747-7460", "0012-9623", "2804-7214", "2694-0884", "2694-085X"))
"2747-7460", "0012-9623", "2804-7214", "2694-0884", "2694-085X")) |>
# Also remove wrong ta data link in JCT
dplyr::filter(esac_id != "eme2025ukb")

# Upload to BQ
jct_hybrid_jns_path <-
Expand Down
Binary file modified data/cc_articles.rda
Binary file not shown.
Binary file modified data/cr_md.rda
Binary file not shown.
Binary file modified data/cr_upw.rda
Binary file not shown.
Binary file modified data/jct_hybrid_jns.rda
Binary file not shown.
Binary file modified data/jct_oalex_venues.rda
Binary file not shown.
Binary file modified data/jn_aff.rda
Binary file not shown.
Binary file modified data/jn_ind.rda
Binary file not shown.
2 changes: 1 addition & 1 deletion inst/sql/cc_upw_cr.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WITH
SELECT
DISTINCT oalex.doi
FROM
`subugoe-collaborative.openalex.works` AS oalex
`subugoe-collaborative.openalex_walden.works` AS oalex
WHERE
open_access.oa_status = "hybrid" ),
# 2. Germany OA evidence per source
Expand Down
2 changes: 1 addition & 1 deletion inst/sql/cr_openalex_inst_full_raw.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WITH first_aff AS (
SELECT doi,
author_position,
institutions
FROM `subugoe-collaborative.openalex.works`,
FROM `subugoe-collaborative.openalex_walden.works`,
UNNEST(authorships)
WHERE author_position = "first"
),
Expand Down
2 changes: 1 addition & 1 deletion inst/sql/jct_inst_enriched.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WITH
LEFT JOIN
`subugoe-collaborative.openalex.institutions` AS oalex_inst
ON
jct_inst.ror_id = oalex_inst.ror
jct_inst.ror_id = oalex_inst.ids.ror
LEFT JOIN
UNNEST(oalex_inst.associated_institutions) AS inst
ORDER BY
Expand Down
2 changes: 1 addition & 1 deletion inst/sql/jct_oalex_venues.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ WITH my_jns AS (
oalex AS (
SELECT homepage_url,
issn_l
FROM `subugoe-collaborative.openalex.sources`
FROM `subugoe-collaborative.openalex_walden.sources`
WHERE works_count > 10
AND homepage_url IS NOT NULL
)
Expand Down