1 학술출판사 순위1

“Coverage, field specialization and impact of scientific publishers indexed in the ‘Book Citation Index’” [1] 논문을 참조하여 위키백과사전에서 언급된 상위 출판사를 추출한다.

2 R 팩키지

  • rOpenSci fulltext
  • rorcid: 과학자와 다른 학문 저작자를 인식하기 위한 비영리 숫자 코드

3 rOpenSci: The fulltext package

rOpenSci fulltext 팩키지는 에서 접속가능한 논문과 관련정보를 Scott Chamberlain (2020-12-01), “Article formats”에서 확인가능하다.

Publisher pdf xml epub Notes
AIRCC Y N N
arXiv Y N N
Bentham Y N N
BiomedCentral Y N N
bioRxiv Y N N
CogentOA Y N N
Copernicus Y Y2 N
De Gruyter Y N N
Dovepress Y N N
eLife Y Y N
FrontiersIn Y Y3 Y ReadCube in browser
Hindawi Y Y Y Don’t show XML link on page
Karger Y N N
MDPI Y Y N
Nature Y N N
PeerJ Y Y N
Pensoft Y Y N
PLoS Y Y4 N
Sage Y N N
Scielo Y Y N May only be some journals
SERSC Y N N
Springer Open Y N N

3.1 fulltext

library(tidyverse)
library(fulltext)

ft_search_ls()
[1] "arxiv"      "biorxivr"   "bmc"        "crossref"   "entrez"    
[6] "europe_pmc" "ma"         "plos"       "scopus"    
res <- ft_search(query = "Smart office")

res$plos
Query: [Smart office] 
Records found, returned: [1296, 10] 
License: [CC-BY] 
# A tibble: 10 x 1
   id                          
   <chr>                       
 1 10.1371/journal.pone.0230832
 2 10.1371/journal.pone.0130501
 3 10.1371/journal.pone.0195670
 4 10.1371/journal.pmed.0040287
 5 10.1371/journal.pone.0219197
 6 10.1371/journal.pone.0105969
 7 10.1371/journal.pone.0169342
 8 10.1371/journal.pone.0240461
 9 10.1371/journal.pone.0126659
10 10.1371/journal.pone.0182439
ft_abstract_ls()
[1] "crossref"        "microsoft"       "plos"            "scopus"         
[5] "semanticscholar"
res <- ft_search(query = "smart office")
(dois <- res$plos$data$id)
 [1] "10.1371/journal.pone.0230832" "10.1371/journal.pone.0130501"
 [3] "10.1371/journal.pone.0195670" "10.1371/journal.pmed.0040287"
 [5] "10.1371/journal.pone.0219197" "10.1371/journal.pone.0105969"
 [7] "10.1371/journal.pone.0169342" "10.1371/journal.pone.0240461"
 [9] "10.1371/journal.pone.0126659" "10.1371/journal.pone.0182439"
out <- ft_abstract(dois)
out
<fulltext abstracts>
Found:
  [PLOS: 10; Scopus: 0; Microsoft: 0; Crossref: 0; Semantic Scholar: 0] 
out$plos[[1]]
$doi
[1] "10.1371/journal.pone.0230832"

$abstract
[1] "\nOne of the core objectives of many animal-welfare organisations is to achieve improvements in animal welfare through school education programmes. However, whilst many charities and organisations develop and deliver these educational activities, impact relating to specific animal welfare attitudes and behaviours remains largely undescribed. This study evaluated the effects of an hour-long dog welfare workshop delivered to children aged 7<U+2013>11, evaluating 2732 learners in state primary schools across the UK. Two types of workshop were evaluated; “Be Dog Smart” (BDS) and “Responsible Dog Ownership” (RDO). This study assessed short-term impact on attitude outcomes, as a first step in developing a full education monitoring and evaluation framework. Learners within each class were randomly assigned to two groups; one completing an attitude-based questionnaire before (control) and the other after the workshop (treatment). Dog ownership status, age, gender, and social deprivation (measured as access to free school meals) were collected for all participants. Questionnaire scores were compared between treatment and control groups. Mean scores were significantly different (BDS p<0.001; Cohen’s D 0.65; RDO p<0.001; Cohen’s D 0.51) between control (BDS 13.57 ± 3.15; RDO 22.97 ± 4.78) and treatment groups (BDS 15.61 ± 3.10; RDO 25.47 ± 5.06) for both workshops, suggesting workshops effectively convey key messages and improve learner attitudes concerning dogs. Gender, age and social deprivation were found to significantly influence questionnaire responses. These findings contribute to a broader effort to improve canine welfare via childhood education while also demonstrating the feasibility of effective monitoring and evaluation during operational delivery of a schools workshop programme. Ongoing impact assessment is important in ensuring successful development, delivery and refinement of educational programmes to maximise the probabilty of positive changes in participants. Further work is needed to evaluate longer term impact, and ensure that desired influences on human behaviour change, and animal welfare, are achieved.\n"

1. Torres-Salinas D, Robinson-Garcı́a N, Campanario JM, López-Cózar ED. Coverage, field specialization and impact of scientific publishers indexed in the ’book citation index’. CoRR. 2013;abs/1312.2791. http://arxiv.org/abs/1312.2791.

 

데이터 과학자 이광춘 저작

kwangchun.lee.7@gmail.com