-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_Bibliography-1.Rmd
325 lines (189 loc) · 7.52 KB
/
_Bibliography-1.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
---
title: "Bibliography"
output: html_notebook
---
A brief introduction to bibliometrix
https://cran.r-project.org/web/packages/bibliometrix/vignettes/bibliometrix-vignette.html
Bibliographic Network Visualization for Academic Literature Reviews
http://www.mburnamfink.com/blog/bibliographic-network-visualization-for-academic-literature-reviews
https://embed.kumu.io/0b991b02bb20975fde904f4bf7433333#jpsp-top-50?s=%23doi-101037-0022-35147451252
More Than Words? Computer-Aided Text Analysis in Organizational Behavior and Psychology Research
https://www.annualreviews.org/doi/10.1146/annurev-orgpsych-032117-104622
https://www.kumu.io/nicholasjkelley/jpsp-top-50
# knitcitations
https://github.com/cboettig/knitcitations
```r
# library(devtools)
# install_github("cboettig/knitcitations")
install.packages("knitcitations")
```
```r
library("knitcitations")
cleanbib()
options("citation_format" = "pandoc")
```
```r
knitcitations::citep("10.1890/11-0011.1")
```
```
citation `r # citep("10.1890/11-0011.1")` in text
```
```r
knitcitations::citet("10.1098/rspb.2013.1372")
```
```
citation `r # citet("10.1098/rspb.2013.1372")` in text
```
```r
knitcitations::citep("http://knowledgeblog.org/greycite")
```
```
write.bibtex(file="references.bib")
```
# rcrossref
https://github.com/ropensci/rcrossref
# rorcid tutorial
https://ropensci.org/tutorials/rorcid_tutorial/
# rentrez tutorial
https://ropensci.org/tutorials/rentrez_tutorial/
# WebSciCorpus
https://www.clarehooper.net/WebSciCorpus/
# WEB OF SCIENCE (WOS) CORPUS | PARSING SCRIPT
https://docs.cortext.net/question/web-of-science-wos-corpus-parsing-script-2/
# T-LAB PLUS 2019
https://tlab.it/en/allegati/help_en_online/mmappe2.htm
# Tools for bibliometric analyses
https://ju.se/library/research--teaching-support/bibliometrics/tools-for-bibliometric-analyses.html
# evidencepartners
https://www.evidencepartners.com/
# R script for creating a cross-citation network
https://www.researchgate.net/publication/327790285_R_script_for_creating_a_cross-citation_network
Repository: https://github.com/arsiders/citation-network
```
# RCitation - Quick Citation Network
# Fall 2018
# A.R. Siders ([email protected])
# Creates a network of the citations among a set of academic papers.
# Rationale: If full title of Article 2 is present in text of Article 1, Article 1 cites Article 2.
# NOTE: Will only work in fields where full, unabbreviated titles are used in reference/bibliography citation format.
# NOTE: Will have high error rate if titles are very short or comprised of common words (e.g., paper "Vulnerability" produced many false positives). Some errors result from authors using a shortened version of a title (e.g., only text before a colon) or incorrect citations or typos. Citation networks produced are therefore approximate and to be used primarily for exploration of the data.
# NOTE: Error rate may be reduced by using only reference sections of the articles of interest, rather than full texts, but this will increase work required to prepare articles.
# ==> FIVE STEPS TO CITATION NETWORK
# STEP 1. FORMAT INPUT
# a. Papers: Folder of papers in txt format (UTF-8) organized *in SAME ORDER* as Titles
# b. Titles: Column of paper titles in csv spreadsheet (Column #1) *in SAME ORDER* as documents in Papers folder. Need a header cell or top title will be removed.
# Recommend naming all texts in Papers folder using author last name listed alphabetically. Organize Titles using same order.
# STEP 2. PREP
# set working directory
setwd("C:\[name of working space]") # make sure \ not / in name
setwd("C:/Users/User/OneDrive/Adaptive Capacity Text Mining/Citation Network Test/CitationNetwork Test Data")
# load packages
install.packages(c("tm","plyr"))
library(tm)
library(plyr)
# STEP 3. LOAD INPUTS
# a. Papers
papers<-Corpus(DirSource("[name of folder where papers located]"))
papers<-Corpus(DirSource("Papers"))
# b. Titles
titletable<-read.csv("[name of titles file].csv") #make sure column has a header
titletable<-read.csv("TestTitles.csv")
titles<-as.vector(titletable[,1])
# load functions at bottom of this script (below Step 5)
length(papers)
length(titles)
# STEP 4. RUN FUNCTION
CitationNetwork<-CreateCitationNetwork(papers,titles)
# add date
currentDate <- Sys.Date()
csvFileName <- paste("CitationEdges",currentDate,".csv",sep="")
# save results
write.csv(CitationNetwork, file=csvFileName)
# STEP 5. VISUALIZE NETWORK
# Install Gephi or other network visualization software and load CitationEdges.csv
# Load list of titles or other spreadsheet as nodes to visualize network
# Gephi available at https://gephi.org/
# ===> FUNCTIONS TO LOAD
CreateCitationNetwork<-function(papers,titles){
# prep papers corpus
papers<-tm_map(papers, content_transformer(tolower))
papers<-tm_map(papers, removePunctuation)
papers<-tm_map(papers, removeNumbers)
papers<-tm_map(papers, stripWhitespace)
# prep titles
titles<-removePunctuation(titles)
titles<-stripWhitespace(titles)
titles<-tolower(titles)
# create citation true/false matrix
Cites.TF<-CiteMatrix(titles, papers)
# format matrix into edges file
CitationEdges<-EdgesFormat(Cites.TF, titles)
return(CitationEdges)
}
# format true/false matrix into edges file
EdgesFormat<-function(Cites.TF, titles){
#create an empty object to put information in
edges<-data.frame(matrix(NA), nrow=NA, ncol=NA)
colnames(edges)<- c("Source","Target","Weight")
for (i in 1:length(Cites.TF)){
#for each document, run through all titles accross columns
for (j in 1:ncol(Cites.TF)){
# for each title, see if document [row] cited that title [column]
if (Cites.TF[i,j]==TRUE){ #if document is cited
temp<-data.frame(matrix(NA), nrow=NA, ncol=NA)
colnames(temp)<- c("Source","Target","Weight")
# first column <- document doing the citing
temp[1,1]<-titles[i]
# second column <- document being cited
temp[1,2]<-titles[j]
# third column the yes/no [weight]
temp[1,3]<-1
temp[1,4]<-"Directed"
edges<-rbind(edges,temp)
}
}
}
return(edges[-1,]) #-1 removes initial row of null values
}
# Citation true/false matrix
CiteMatrix<-function(search.vector, Ref.corpus){
# Creates a csv matrix with True/False for citation patterns
citations<-data.frame(matrix(NA, nrow = length(Ref.corpus), ncol=length(search.vector)))
#Columns are the document being cited
colnames(citations)<-search.vector
#Rows are the document doing the citing
rownames(citations)<-search.vector
for (i in 1:length(search.vector)){
searchi<-search.vector[i]
papercite<-grepl(searchi, Ref.corpus$content, fixed=TRUE)
citations[,i]<-papercite
}
return(citations)
}
```
---
- The application of methods of social network analysis in bibliometrics and webometrics. Measures and tools
https://www.researchgate.net/publication/327817518_The_application_of_methods_of_social_network_analysis_in_bibliometrics_and_webometrics_Measures_and_tools
---
# ScientoMiner ICR
https://zenodo.org/record/1432557#.XItjfxO2k1J
---
# onodo
https://onodo.org/dashboard
https://onodo.org/tutorials
---
# BibExcel
https://homepage.univie.ac.at/juan.gorraiz/bibexcel/
---
# Scientometric Portal
https://sites.google.com/site/hjamali/scientometric-portal
---
# leydesdorff
https://www.leydesdorff.net/software.htm
---
# Publish or Perish
https://harzing.com/resources/publish-or-perish
---
# Pajek: analysis and visualization of large networks
http://mrvar.fdv.uni-lj.si/pajek/
---