Skip to content

Commit 2140bbe

Browse files
committed
fix merge
2 parents 72ddee0 + 70e7915 commit 2140bbe

2 files changed

Lines changed: 36 additions & 22 deletions

File tree

README.md

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ oa_df <- roadoi::oadoi_fetch(random_dois,
253253

254254
#### Analysis
255255

256+
<<<<<<< HEAD
256257
roadoi returns the data in a consistent structure improved for further analysis in R.
257258

258259

@@ -262,14 +263,14 @@ oa_df
262263
#> doi best_oa_location oa_locations oa_locations_em… data_standard is_oa
263264
#> <chr> <list> <list> <list> <int> <lgl>
264265
#> 1 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
265-
#> 2 10.3… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
266-
#> 3 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
267-
#> 4 10.1… <tibble [1 × 11… <tibble [1 … <tibble [0 × 0]> 2 TRUE
266+
#> 2 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
267+
#> 3 10.1… <tibble [1 × 9]> <tibble [2 … <tibble [0 × 0]> 2 TRUE
268+
#> 4 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
268269
#> 5 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
269270
#> 6 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
270271
#> 7 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
271-
#> 8 10.1… <tibble [1 × 10… <tibble [2 … <tibble [0 × 0]> 2 TRUE
272-
#> 9 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
272+
#> 8 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
273+
#> 9 10.3… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
273274
#> 10 10.1… <tibble [0 × 0]> <tibble [0 … <tibble [0 × 0]> 2 FALSE
274275
#> # … with 40 more rows, and 15 more variables: is_paratext <lgl>, genre <chr>,
275276
#> # oa_status <chr>, has_repository_copy <lgl>, journal_is_oa <lgl>,
@@ -282,16 +283,23 @@ For example, to determine how many full-text links were found and which sources
282283

283284

284285
```r
286+
=======
287+
roadoi returns the data in a consistent structure improved for further analysis in R. For example, to determine how many full-text links were found and which sources were used:
288+
#> Error: <text>:1:1: Unerwartete(s) '=='
289+
#> 1: ==
290+
#> ^
291+
```
292+
293+
```r
294+
>>>>>>> 70e7915333d1bc2b210427025ce2d0709f7fd739
285295
oa_df %>%
286296
group_by(is_oa) %>%
287297
summarise(Articles = n()) %>%
288298
mutate(Proportion = Articles / sum(Articles)) %>%
289299
arrange(desc(Articles))
290-
#> # A tibble: 2 x 3
291-
#> is_oa Articles Proportion
292-
#> <lgl> <int> <dbl>
293-
#> 1 FALSE 37 0.74
294-
#> 2 TRUE 13 0.26
300+
#> Error: <text>:1:1: Unerwartete(s) '>'
301+
#> 1: >
302+
#> ^
295303
```
296304

297305
How did Unpaywall find those Open Access full-texts, which were characterized as best matches, and how are these OA types distributed over publication types?
@@ -306,18 +314,18 @@ oa_df %>%
306314
summarise(Articles = n()) %>%
307315
arrange(desc(Articles))
308316
#> # A tibble: 9 x 4
309-
#> # Groups: oa_status, evidence [7]
310-
#> oa_status evidence genre Articles
311-
#> <chr> <chr> <chr> <int>
312-
#> 1 green oa repository (via OAI-PMH doi match) journal-art… 3
313-
#> 2 bronze open (via free pdf) journal-art… 2
314-
#> 3 gold open (via page says license) journal-art… 2
315-
#> 4 gold oa journal (via doaj) journal-art… 1
316-
#> 5 gold oa journal (via publisher name) component 1
317-
#> 6 gold open (via free pdf) journal-art… 1
318-
#> 7 green oa repository (via OAI-PMH doi match) report 1
319-
#> 8 green oa repository (via OAI-PMH title and first au… journal-art… 1
320-
#> 9 green oa repository (via OAI-PMH title and first au… other 1
317+
#> # Groups: oa_status, evidence [9]
318+
#> oa_status evidence genre Articles
319+
#> <chr> <chr> <chr> <int>
320+
#> 1 gold open (via page says license) journal-article 4
321+
#> 2 bronze open (via free pdf) journal-article 2
322+
#> 3 green oa repository (via OAI-PMH doi match) journal-article 2
323+
#> 4 hybrid open (via crossref license) journal-article 2
324+
#> 5 gold oa journal (via observed oa rate) journal-article 1
325+
#> 6 gold oa journal (via publisher name) component 1
326+
#> 7 gold open (via free pdf) journal-article 1
327+
#> 8 green oa repository (semantic scholar lookup) book 1
328+
#> 9 hybrid open (via page says license) journal-article 1
321329
```
322330

323331
#### More examples

vignettes/intro.Rmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ oa_df <- roadoi::oadoi_fetch(random_dois,
152152

153153
#### Analysis
154154

155+
<<<<<<< HEAD
155156
roadoi returns the data in a consistent structure improved for further analysis in R.
156157

157158
```{r}
@@ -161,6 +162,11 @@ oa_df
161162
For example, to determine how many full-text links were found and which sources were used:
162163

163164
```{r}
165+
=======
166+
roadoi returns the data in a consistent structure improved for further analysis in R. For example, to determine how many full-text links were found and which sources were used:
167+
168+
```{r}
169+
>>>>>>> 70e7915333d1bc2b210427025ce2d0709f7fd739
164170
oa_df %>%
165171
group_by(is_oa) %>%
166172
summarise(Articles = n()) %>%

0 commit comments

Comments
 (0)