-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
3,785 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,7 @@ pathologyarticles | |
packrat/src/ | ||
data/ | ||
Neurosurgery-Articles | ||
VOSviewer | ||
CitNetExplorer | ||
CiteSpaceV | ||
Pediatric-Surgery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
PathologyArticlesFromTurkeyComparedtoAllPublishedArticles.Rmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: "Pathology Articles From Turkey Compared to All Published Articles" | ||
output: html_notebook | ||
--- | ||
|
||
# europepmc | ||
|
||
https://cran.r-project.org/web/packages/europepmc/index.html | ||
|
||
https://cran.r-project.org/web/packages/europepmc/vignettes/evergreenreviewgraphs.html | ||
|
||
|
||
```{r} | ||
library(europepmc) | ||
``` | ||
|
||
|
||
```{r} | ||
articlesPerTotalArticles <- europepmc::epmc_hits_trend(query = "(AFF:'Turkey') AND ((AFF:'pathology') OR (AFF:'Pathology'))", period = 1980:2017) | ||
articlesPerTotalArticles | ||
``` | ||
|
||
|
||
|
||
A trend graph of articles of #pathologist from #Turkey derived from Europe PMC #RStats #europepmc #evergreenreviewgraph #pathology #research #bibliography | ||
|
||
|
||
```{r} | ||
library(ggplot2) | ||
ggplot(articlesPerTotalArticles, aes(year, query_hits / all_hits)) + | ||
geom_point() + | ||
geom_line() + | ||
xlab("Year published") + | ||
ylab("Proportion of Pathology articles \n from Turkey in Europe PMC") | ||
``` | ||
|
||
|
||
|
1,789 changes: 1,789 additions & 0 deletions
1,789
PathologyArticlesFromTurkeyComparedtoAllPublishedArticles.nb.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@article{Br_ggmann_2016, | ||
doi = {10.1186/s12905-016-0336-0}, | ||
url = {https://doi.org/10.1186%2Fs12905-016-0336-0}, | ||
year = 2016, | ||
month = {sep}, | ||
publisher = {Springer Nature}, | ||
volume = {16}, | ||
number = {1}, | ||
author = {Dörthe Brüggmann and Alexandra Elizabeth-Martinez and Doris Klingelhöfer and David Quarcoo and Jenny M. Jaque and David A. Groneberg}, | ||
title = {Endometriosis and its global research architecture: an in-depth density-equalizing mapping analysis}, | ||
journal = {{BMC} Women{\textquotesingle}s Health} | ||
} | ||
|
||
@article{Br_ggmann_2016, | ||
doi = {10.1186/s12905-016-0336-0}, | ||
url = {https://doi.org/10.1186%2Fs12905-016-0336-0}, | ||
year = 2016, | ||
month = {sep}, | ||
publisher = {Springer Nature}, | ||
volume = {16}, | ||
number = {1}, | ||
author = {Dörthe Brüggmann and Alexandra Elizabeth-Martinez and Doris Klingelhöfer and David Quarcoo and Jenny M. Jaque and David A. Groneberg}, | ||
title = {Endometriosis and its global research architecture: an in-depth density-equalizing mapping analysis}, | ||
journal = {{BMC} Women{\textquotesingle}s Health} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: "endometriosis" | ||
output: html_notebook | ||
--- | ||
|
||
```{r} | ||
library(europepmc) | ||
``` | ||
|
||
|
||
```{r} | ||
endometriosis_articlesPerTotalArticles <- europepmc::epmc_hits_trend(query = "endometriosis", period = 1980:2017) | ||
endometriosis_articlesPerTotalArticles | ||
View(endometriosis_articlesPerTotalArticles) | ||
``` | ||
|
||
|
||
```{r} | ||
library(ggplot2) | ||
ggplot(endometriosis_articlesPerTotalArticles, aes(year, query_hits / all_hits)) + | ||
geom_point() + | ||
geom_line() + | ||
xlab("Year published") + | ||
ylab("Proportion of Endometriois \n articles in Europe PMC") | ||
``` | ||
|
||
|
||
|
||
|
||
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5031306/ | ||
|
||
|
||
```{r} | ||
knitcitations::citep("10.1186/s12905-016-0336-0") | ||
``` | ||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
p values in pathology articles | ||
regular expression |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ulakbim patoloji | ||
TR dizin |