Skip to content

Commit

Permalink
updated on 2019-01-28 19:33:58
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalci committed Jan 28, 2019
1 parent 7712103 commit 16cee90
Show file tree
Hide file tree
Showing 6 changed files with 1,978 additions and 9 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ vosviewer.jnlp
grid-2018-11-14
Bibliografi
DataResourcesProducts
CiteSpaceProject
7 changes: 7 additions & 0 deletions Sources.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ caffeinate
```

## Microsoft Academic

https://labs.cognitive.microsoft.com/en-us/project-academic-knowledge

## Scopus

Expand All @@ -213,6 +216,10 @@ https://www.altmetric.com/top100/2018/
https://grid.ac/


## ROR

https://ror.org/search?page=1&query=turkey


## Cobalmetrics

Expand Down
26 changes: 17 additions & 9 deletions Sources.nb.html

Large diffs are not rendered by default.

87 changes: 87 additions & 0 deletions WOS.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
title: "WOS"
output: html_notebook
---

# bibliometrix

---

https://cran.r-project.org/web/packages/bibliometrix/vignettes/bibliometrix-vignette.html


---


http://www.bibliometrix.org/


---



---


https://cran.r-project.org/web/packages/bibliometrix/bibliometrix.pdf

https://www.rdocumentation.org/packages/bibliometrix/versions/1.8/topics/convert2df


```{r}
# NOT RUN {
# An ISI or SCOPUS Export file can be read using \code{\link{readLines}} function:
# largechar <- readLines('filename.txt')
# filename.txt is an ISI or SCOPUS Export file in plain text or bibtex format.
# The file have to be saved without Byte order mark (U+FEFF) at the beginning
# and EoF code at the end of file.
# The original file (exported by ISI or SCOPUS search web site) can be modified
# using an advanced text editor like Notepad++ or Emacs.
# install.packages("bibliometrix", dependencies = TRUE)
library(bibliometrix)
biblio <- readLines('http://www.bibliometrix.org/datasets/bibliometrics_articles.txt')
biblio_df_df <- convert2df(file = biblio, dbsource = "isi", format = "bibtex")
# }
```


```{r}
biblio1 <- readLines("data/WOS-Turkey-PathologyField/savedrecs-1-500.txt")
# biblio_df1 <- convert2df(file = biblio1, dbsource = "isi", format = "plaintext")
biblio_df1 <- isi2df(D = biblio1)
```


- readFiles: Load a sequence of ISI or SCOPUS Export files into a large...

https://rdrr.io/cran/bibliometrix/man/readFiles.html

- convert2df: Convert a Clarivate Analytics WoS, SCOPUS and COCHRANE...

https://rdrr.io/cran/bibliometrix/man/isibib2df.html




# hindexcalculator

https://cran.rstudio.com/web/packages/hindexcalculator/hindexcalculator.pdf


# read.wos.R

https://github.com/alberto-martin/read.wos.R

https://github.com/alberto-martin/read.wos.R/blob/master/report.Rmd

https://zenodo.org/record/1479822#.XEL7QvxS81J
1,866 changes: 1,866 additions & 0 deletions WOS.nb.html

Large diffs are not rendered by default.

0 comments on commit 16cee90

Please sign in to comment.