diff --git a/.DS_Store b/.DS_Store index 3581702..e71d8b5 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index 74b0fe2..c221bf2 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,4 @@ Pediatric-Surgery p values regular expression AIDA-Booklet-V2.2.pdf vosviewer.jnlp -grid-2018-11-14- +grid-2018-11-14 diff --git a/ArticlesPerJournalsPerCountry-.Rmd b/ArticlesPerJournalsPerCountry-.Rmd deleted file mode 100644 index c5f31e2..0000000 --- a/ArticlesPerJournalsPerCountry-.Rmd +++ /dev/null @@ -1,197 +0,0 @@ ---- -title: "Bibliographic Studies" -subtitle: "Articles per journals per country" -author: "Serdar Balcı, MD, Pathologist" -date: '`r format(Sys.Date())`' -output: - html_notebook: - code_folding: hide - fig_caption: yes - highlight: kate - number_sections: yes - theme: cerulean - toc: yes - toc_float: yes - html_document: - code_folding: hide - df_print: kable - keep_md: yes - number_sections: yes - theme: cerulean - toc: yes - toc_float: yes - highlight: kate ---- - -If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page. - ---- - -# Analysis - -```{r setup, include=FALSE} -knitr::opts_chunk$set(message=FALSE, warning=FALSE, tidy = TRUE) -``` - -## Articles per journals per country - -**Aim:** - -In the [previous analysis](https://sbalci.github.io/pubmed/CountryBasedComparison.html) we have observed that Japanese researchers have much more articles than German and Turkish researchers. - -Here we will look at the distribution of articles per journals per country. - - -**Methods:** - -```{r load required packages} -# load required packages -library(tidyverse) -library(RISmed) -``` - -Pathology Journal ISSN List was retrieved from [In Cites Clarivate](https://jcr.incites.thomsonreuters.com/), and Journal Data Filtered as follows: `JCR Year: 2016 Selected Editions: SCIE,SSCI Selected Categories: 'PATHOLOGY' Selected Category Scheme: WoS` - -```{r Get ISSN List from data downloaded from WoS} -# Get ISSN List from data downloaded from WoS -ISSNList <- JournalHomeGrid <- read_csv("data/JournalHomeGrid.csv", - skip = 1) %>% - select(ISSN) %>% - filter(!is.na(ISSN)) %>% - t() %>% - paste("OR ", collapse = "") # add OR between ISSN List - -ISSNList <- gsub(" OR $","" ,ISSNList) # to remove last OR -``` - -Data is retrieved from PubMed via RISmed package. -PubMed collection from National Library of Medicine (https://www.ncbi.nlm.nih.gov/pubmed/), has the most comprehensive information about peer reviewed articles in medicine. -The API (https://dataguide.nlm.nih.gov/), and R packages are available for getting and fetching data from the server. - -The search formula for PubMed is generated as "ISSN List AND Country[Affiliation]" like done in [advanced search of PubMed](https://www.ncbi.nlm.nih.gov/pubmed/advanced). - -```{r Generate Search Formula For Pathology Journals AND Countries} -# Generate Search Formula For Pathology Journals AND Countries -searchformulaTR <- paste("'",ISSNList,"'", " AND ", "Turkey[Affiliation]") -searchformulaDE <- paste("'",ISSNList,"'", " AND ", "Germany[Affiliation]") -searchformulaJP <- paste("'",ISSNList,"'", " AND ", "Japan[Affiliation]") -``` - -Articles from Japan, German and Turkey are retrieved limiting the search with pathology journals, affiliation and last 10 years. - -```{r Search PubMed, Get and Fetch} -# Search PubMed, Get and Fetch -TurkeyArticles <- EUtilsSummary(searchformulaTR, type = 'esearch', db = 'pubmed', mindate = 2007, maxdate = 2017, retmax = 10000) -fetchTurkey <- EUtilsGet(TurkeyArticles) - -GermanyArticles <- EUtilsSummary(searchformulaDE, type = 'esearch', db = 'pubmed', mindate = 2007, maxdate = 2017, retmax = 10000) -fetchGermany <- EUtilsGet(GermanyArticles) - -JapanArticles <- EUtilsSummary(searchformulaJP, type = 'esearch', db = 'pubmed', mindate = 2007, maxdate = 2017, retmax = 10000) -fetchJapan <- EUtilsGet(JapanArticles) -``` - -The retrieved information was compiled in a table. - -```{r} - -ISSNTR <- table(ISSN(fetchTurkey)) %>% - as_tibble() %>% - rename(Turkey = n, Journal = Var1) - -ISSNDE <- table(ISSN(fetchGermany)) %>% - as_tibble() %>% - rename(Germany = n, Journal = Var1) - -ISSNJP <- table(ISSN(fetchJapan)) %>% - as_tibble() %>% - rename(Japan = n, Journal = Var1) - -articles_per_journal <- list( - ISSNTR, - ISSNDE, - ISSNJP -) %>% - reduce(left_join, by = "Journal", .id = "id") %>% - gather(Country, n, 2:4) - -articles_per_journal$Country <- factor(articles_per_journal$Country, - levels =c("Japan", "Germany", "Turkey")) - -``` - - - -**Result:** - -In this graph x-axis is the list of journals with decreasing impact factor, and y-axis is the number of articles published in that journal. The colors and shapes are showing the country of affiliation. We see that in one journal articles from Japan is more than 800. - -```{r} -ggplot(data = articles_per_journal, aes(x = Journal, y = n, group = Country, - colour = Country, shape = Country, - levels = Country -)) + - geom_point() + - labs(x = "Journals with decreasing impact factor", y = "Number of Articles") + - ggtitle("Pathology Articles Per Journal") + - theme(plot.title = element_text(hjust = 0.5), - axis.text.x=element_blank()) - -``` - - -**Comment:** - -It is seen that one of the journals [ISSN: 1440-1827](https://onlinelibrary.wiley.com/page/journal/14401827/homepage/productinformation.html) has more than 800 articles from Japan. This journal is also from Japan. Here we wonder if there is an editorial preference for articles from their home country. - -We sometimes observe this situation if there is a conference in that country, and the conference abstracts are indexed. - -This may also be a clue that if a country has a journal listed in indexes, than it is more easy for the researchers in that country to publish their results. - - -**Future Work:** - -Whether this observation is a unique situation, or there is a tendency in the journals to publish article from their country of origin, merits further investigation. - - - ---- - - -# Feedback - -[Serdar Balcı, MD, Pathologist](https://github.com/sbalci) would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3 - -This document will be continiously updated and the last update was on `r Sys.Date()`. - ---- - - - -
- - - - ---- - -# Back to Main Menu - -[Main Page for Bibliographic Analysis](https://sbalci.github.io/pubmed/BibliographicStudies.html) \ No newline at end of file diff --git a/BibliographicStudies-.Rmd b/BibliographicStudies-.Rmd deleted file mode 100644 index a97879e..0000000 --- a/BibliographicStudies-.Rmd +++ /dev/null @@ -1,147 +0,0 @@ ---- -title: "Bibliographic Studies" -subtitle: "Reproducible Bibliometric Analysis of Pathology Articles Using PubMed, E-direct, WoS, Google Scholar" -author: "Serdar Balcı, MD, Pathologist" -date: '`r format(Sys.Date())`' -output: - html_document: - code_folding: hide - df_print: kable - highlight: kate - keep_md: yes - number_sections: yes - theme: cerulean - toc: yes - toc_float: yes - html_notebook: - code_folding: hide - fig_caption: yes - highlight: kate - number_sections: yes - theme: cerulean - toc: yes - toc_depth: 5 - toc_float: yes ---- - -# Introduction - -It is a very common bibliometric study type to retrospectively analyse the number of peer reviewed articles written from a country to view the amount of contribution made in a specific scientific discipline. - -These studies require too much effort, since the data is generally behind paywalls and restrictions. - -I have previously contributed to a research to identify the Articles from Turkey Published in Pathology Journals Indexed in International Indexes; which is published here: [Turk Patoloji Derg. 2010, 26(2):107-113 doi: 10.5146/tjpath.2010.01006](http://www.turkjpath.org/summary_en.php3?id=1423) - -This study had required manual investigation of many excel files, which was time consuming; also redoing and updating the data and results require a similar amount of effort. - - ---- - -If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page. - -I would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3 - -This document will be continiously updated and the last update was on `r Sys.Date()`. - ---- - - -# Analysis - ---- - -## Country Based Comparison - -To see the analysis comparing number of pathology articles from Turkey, German and Japan see this analysis: [Country Based Comparison](https://sbalci.github.io/pubmed/CountryBasedComparison.html) - ---- - -## Articles per Journals per Country - -In this analysis we aimed to compare number articles per journals per country. We tried to identify if articles from a country is published in certain journals: [Articles Per Journals Per Country](https://sbalci.github.io/pubmed/ArticlesPerJournalsPerCountry.html) - -## Most Common MeSH Terms and Keywords used in Pathology Articles from Turkey - -In this analysis we aimed to identify the common research topics Turkish pathologists are interested. We extracted most common MeSH terms and keywords from PubMed articles using EDirect: -[MeSH Terms Pathology Articles From Turkey](https://sbalci.github.io/pubmed/MeSH_Terms_Pathology_Articles_From_Turkey.html) - - ---- - - - ---- - - - ---- - - - ---- - - - ---- - - - ---- - - - - ---- - - - - ---- - - - ---- - - - - ---- - -# Sources Used For Analysis - -Here are the sources used in these analysis: [Sources Used For Analysis](https://sbalci.github.io/pubmed/Sources.html) - ---- - -# Feedback - -[Serdar Balcı, MD, Pathologist](https://github.com/sbalci) would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3 - -This document will be continiously updated and the last update was on `r Sys.Date()`. - ---- - - - -
- - - ---- diff --git a/BibliographicStudies.Rmd b/BibliographicStudies.Rmd index 36aa461..0965486 100644 --- a/BibliographicStudies.Rmd +++ b/BibliographicStudies.Rmd @@ -105,6 +105,11 @@ In this analysis we aimed to identify the common research topics Turkish patholo +--- + + + + --- @@ -194,3 +199,152 @@ s.setAttribute('data-timestamp', +new Date()); + +--- +title: "Bibliographic Studies" +subtitle: "Reproducible Bibliometric Analysis of Pathology Articles Using PubMed, E-direct, WoS, Google Scholar" +author: "Serdar Balcı, MD, Pathologist" +date: '`r format(Sys.Date())`' +output: + html_document: + code_folding: hide + df_print: kable + highlight: kate + keep_md: yes + number_sections: yes + theme: cerulean + toc: yes + toc_float: yes + html_notebook: + code_folding: hide + fig_caption: yes + highlight: kate + number_sections: yes + theme: cerulean + toc: yes + toc_depth: 5 + toc_float: yes +--- + +# Introduction + +It is a very common bibliometric study type to retrospectively analyse the number of peer reviewed articles written from a country to view the amount of contribution made in a specific scientific discipline. + +These studies require too much effort, since the data is generally behind paywalls and restrictions. + +I have previously contributed to a research to identify the Articles from Turkey Published in Pathology Journals Indexed in International Indexes; which is published here: [Turk Patoloji Derg. 2010, 26(2):107-113 doi: 10.5146/tjpath.2010.01006](http://www.turkjpath.org/summary_en.php3?id=1423) + +This study had required manual investigation of many excel files, which was time consuming; also redoing and updating the data and results require a similar amount of effort. + + +--- + +If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page. + +I would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3 + +This document will be continiously updated and the last update was on `r Sys.Date()`. + +--- + + +# Analysis + +--- + +## Country Based Comparison + +To see the analysis comparing number of pathology articles from Turkey, German and Japan see this analysis: [Country Based Comparison](https://sbalci.github.io/pubmed/CountryBasedComparison.html) + +--- + +## Articles per Journals per Country + +In this analysis we aimed to compare number articles per journals per country. We tried to identify if articles from a country is published in certain journals: [Articles Per Journals Per Country](https://sbalci.github.io/pubmed/ArticlesPerJournalsPerCountry.html) + +## Most Common MeSH Terms and Keywords used in Pathology Articles from Turkey + +In this analysis we aimed to identify the common research topics Turkish pathologists are interested. We extracted most common MeSH terms and keywords from PubMed articles using EDirect: +[MeSH Terms Pathology Articles From Turkey](https://sbalci.github.io/pubmed/MeSH_Terms_Pathology_Articles_From_Turkey.html) + + +--- + + + +--- + + + +--- + + + +--- + + + +--- + + + +--- + + + + +--- + + + + +--- + + + +--- + + + + +--- + +# Sources Used For Analysis + +Here are the sources used in these analysis: [Sources Used For Analysis](https://sbalci.github.io/pubmed/Sources.html) + +--- + +# Feedback + +[Serdar Balcı, MD, Pathologist](https://github.com/sbalci) would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3 + +This document will be continiously updated and the last update was on `r Sys.Date()`. + +--- + + + +
+ + + +--- + diff --git a/BibliographicStudies.nb.html b/BibliographicStudies.nb.html index b7250e2..977336f 100644 --- a/BibliographicStudies.nb.html +++ b/BibliographicStudies.nb.html @@ -11,7 +11,7 @@ - + Bibliographic Studies @@ -2895,7 +2895,7 @@

Bibliographic Studies

Reproducible Bibliometric Analysis of Pathology Articles Using PubMed, E-direct, WoS, Google Scholar

Serdar Balcı, MD, Pathologist

-

2019-01-07

+

2019-01-11

@@ -2910,7 +2910,7 @@

1 Introduction


If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page.

I would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3

-

This document will be continiously updated and the last update was on 2019-01-07.

+

This document will be continiously updated and the last update was on 2019-01-11.


@@ -2947,6 +2947,9 @@

2.3 Most Common MeSH Terms and Ke

+ + +
@@ -2994,7 +2997,95 @@

3 Sources Used For Analysis

4 Feedback

Serdar Balcı, MD, Pathologist would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3

-

This document will be continiously updated and the last update was on 2019-01-07.

+

This document will be continiously updated and the last update was on 2019-01-11.

+
+ +
+ +
+ + +
+
+
+

5 Introduction

+

It is a very common bibliometric study type to retrospectively analyse the number of peer reviewed articles written from a country to view the amount of contribution made in a specific scientific discipline.

+

These studies require too much effort, since the data is generally behind paywalls and restrictions.

+

I have previously contributed to a research to identify the Articles from Turkey Published in Pathology Journals Indexed in International Indexes; which is published here: Turk Patoloji Derg. 2010, 26(2):107-113 doi: 10.5146/tjpath.2010.01006

+

This study had required manual investigation of many excel files, which was time consuming; also redoing and updating the data and results require a similar amount of effort.

+
+

If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page.

+

I would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3

+

This document will be continiously updated and the last update was on 2019-01-11.

+
+
+
+

6 Analysis

+
+
+

6.1 Country Based Comparison

+

To see the analysis comparing number of pathology articles from Turkey, German and Japan see this analysis: Country Based Comparison

+
+
+
+

6.2 Articles per Journals per Country

+

In this analysis we aimed to compare number articles per journals per country. We tried to identify if articles from a country is published in certain journals: Articles Per Journals Per Country

+
+
+

6.3 Most Common MeSH Terms and Keywords used in Pathology Articles from Turkey

+

In this analysis we aimed to identify the common research topics Turkish pathologists are interested. We extracted most common MeSH terms and keywords from PubMed articles using EDirect: MeSH Terms Pathology Articles From Turkey

+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+
+

7 Sources Used For Analysis

+

Here are the sources used in these analysis: Sources Used For Analysis

+
+
+
+

8 Feedback

+

Serdar Balcı, MD, Pathologist would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3

+

This document will be continiously updated and the last update was on 2019-01-11.


+ + + +