-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_descriptives_parts_c_d.Rmd
217 lines (137 loc) · 6.06 KB
/
02_descriptives_parts_c_d.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
---
title: "Survey Results Task 3.3 Part C and D"
author: "Anja Rainer"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output:
html_document:
keep_md: true
editor_options:
chunk_output_type: inline
---
```{r setup, include=FALSE}
library(tidyverse)
knitr::opts_chunk$set(echo = TRUE, warning = FALSE, dpi = 300)
df <- tar_read(with_countries)
question_codes <- read_csv("data/processed/question_codes.csv")
```
# C1 Institution: OA policy
Does your institution have an open access policy? (Y/N/ I don’t know)
```{r c1, fig.width=6, fig.height=2}
answer_levels_5 <- c("I don't know", "No", "Yes")
c1_df <- df %>%
select("C1")
c1_df_rec <- c1_df %>%
mutate(across(.fns = factor, levels = answer_levels_5))
c1_df_rec %>%
plot_bar(C1, title = "Institution: OA policy", reorder = TRUE, nudge_y = .08)
```
# C3 Institution: OS/OA practices recommandation
Does your institution recommend open science/ open access practices? (Y/N)
```{r c3, fig.width=6, fig.height=2}
answer_levels_6 <- c("No", "Yes")
c3_df <- df %>%
select("C3")
c3_df_rec <- c3_df %>%
mutate(across(.fns = factor, levels = answer_levels_6))
c3_df_rec %>%
plot_bar(C3, title = "Institution: OS/OA practices recommandation", reorder = TRUE, nudge_y = .08)
```
# c5 Helpdesk/group to support any issues
Is there a dedicated helpdesk/ group to support any issues related to the open science / open access policy? (Y/N/ I don’t know)
```{r c5, fig.width=6, fig.height=2}
c5_df <- df %>%
select("C5")
c5_df_rec <- c5_df %>%
mutate(across(.fns = factor, levels = answer_levels_5))
c5_df_rec %>%
plot_bar(C5, title = "Helpdesk/group to support any issues", reorder = FALSE, nudge_y = .06)
```
# C6 Guidance on how to comply with the policies by the financing entities that require OA to publications
Do you receive any guidance on how to comply with the policies issued by the financing entities that require open access to publications, such as the European Commission or the European Research Council? (Y/N/ I don’t know)
```{r c6, fig.width=6, fig.height=2}
c6_df <- df %>%
select("C6")
c6_df_rec <- c6_df %>%
mutate(across(.fns = factor, levels = answer_levels_5))
c6_df_rec %>%
plot_bar(C6, title = "Guidance on how to comply with the policies by the financing entities that require OA to publications", reorder = FALSE, nudge_y = .06)
```
# C7 Financial support in paying article processing charges (APCs)
Does your institution support you financially in paying article processing charges (APCs)? (Y/N/ I don’t know))
```{r c7, fig.width=6, fig.height=2}
c7_df <- df %>%
select("C7")
c7_df_rec <- c7_df %>%
mutate(across(.fns = factor, levels = answer_levels_5))
c7_df_rec %>%
plot_bar(C7, title = "Financial support in paying article processing charges (APCs)", reorder = FALSE, nudge_y = .07)
```
# C8 Degree of support in practicing OS at institution
To what degree are you supported in practicing Open Science at your institution?
```{r c8, fig.width=9, fig.height=5, results="asis"}
answer_levels_7 <- c("Don’t know/ Don’t have enough information", "I do not receive any support or incentives", "I do not receive any support or incentives but would like to", "I receive some support or incentives",
"I receive sufficient support or incentives")
c8_df <- df %>%
select(starts_with("C8["))
c8_df_rec <- c8_df %>%
mutate(across(.fns = factor, levels = answer_levels_7))
c8_df_rec %>%
plot_likert()
```
# C10: Other initiatives incentivising Open Science practices at institution
Are there other initiatives incentivising Open Science practices at your institution (eg. Open Science cafes, Data champions)? (Y/N)
```{r c10, fig.width=6, fig.height=2}
c10_df <- df %>%
select("C10")
c10_df_rec <- c10_df %>%
mutate(across(.fns = factor, levels = answer_levels_6))
c10_df_rec %>%
plot_bar(C10, title = "Other initiatives incentivising Open Science practices at institution", reorder = FALSE, nudge_y = .1)
```
# Part D: Drivers and barriers to practicing Open Science
# D2 Summarised views: What would you say OS is?
Overall, if you had to summarise your views, what would you say Open Science is?
```{r d2, fig.width=8, fig.height=4, results="asis"}
d2_df <- df %>%
select("D2[SQ001]", "D2[SQ002]", "D2[SQ003]", "D2[SQ004]", "D2[SQ005]", "D2[SQ006]", "D2[SQ007]")
d2_df_rec <- d2_df %>%
mutate(across(.fns = factor, levels = answer_levels_6))
d2_df_rec %>%
plot_likert(legend_rows = 1)
```
# D3 Most significant barriers facing while embracing an OS perspective
Which are the most significant barriers you will be facing while embracing an Open Science perspective?
```{r d3, fig.width=8, fig.height=4, results="asis"}
answer_levels_8 <- c("Don’t know/ Don’t have enough information", "No barrier", "Minor barrier",
"Significant barrier", "Very significant barrier")
d3_df <- df %>%
select("D3[SQ001]", "D3[SQ002]", "D3[SQ003]", "D3[SQ004]", "D3[SQ005]", "D3[SQ006]", "D3[SQ007]", "D3[SQ008]")
d3_df_rec <- d3_df %>%
mutate(across(.fns = factor, levels = answer_levels_8))
d3_df_rec %>%
plot_likert(legend_rows = 1)
```
# D5 Main drivers to participate OS
What could be the main drivers for you to practice open science?
```{r d5, fig.width=8, fig.height=4, results="asis"}
answer_levels_9 <- c("Don’t know/ Don’t have enough information", "No driver", "Minor driver",
"Significant driver", "Very significant driver")
d5_df <- df %>%
select(starts_with("D5["))
d5_df_rec <- d5_df %>%
mutate(across(.fns = factor, levels = answer_levels_9))
d5_df_rec %>%
plot_likert(legend_rows = 1)
```
# D7 Drivers or barriers to practice Open Science
Would you say the following factors are drivers or barriers for you to practice Open Science?
```{r d7, fig.width=8, fig.height=4, results="asis"}
answer_levels_9 <- c("Don’t know/ Don’t have enough information", "Barrier", "Neither barrier nor driver",
"Driver")
d7_df <- df %>%
select(starts_with("D7["))
d7_df_rec <- d7_df %>%
mutate(across(.fns = factor, levels = answer_levels_9))
d7_df_rec %>%
plot_likert(legend_rows = 1)
```