-
Notifications
You must be signed in to change notification settings - Fork 1
/
CLIMR_power_report.Rmd
122 lines (84 loc) · 2.46 KB
/
CLIMR_power_report.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
---
title: "Construal Level International Multilab Replication (CLIMR) Project: Power Analysis Report"
author: "CLIMR Team"
date: "`r Sys.Date()`"
output:
html_document:
theme: darkly
toc: yes
toc_float: yes
pdf_document:
toc: yes
knit: (function(input_file, encoding) {
rmarkdown::render(input_file, rmarkdown::github_document(html_preview = FALSE), encoding = encoding, output_dir = "./reports/")
})
---
# Power Figure
```{r}
knitr::include_graphics("./figures/climr_power_figure.png")
```
# Power Analyses for Each Replication
## Liberman & Trope (1998, Study 1)
### What sample sizes are needed for 80% and 95% power to detect the replication effect?
```{r}
power_80_n_temporal
```
```{r}
power_95_n_temporal
```
### What proportion of previous experiments had at least 80% power to detect effects the size of the replication effect?
```{r}
smaller_prop_temporal
```
### What is the median power for the replication effect that the previous experiments samples provided?
```{r}
median_power_temporal
```
## Fujita et al. (2006, Study 1)
### What sample sizes are needed for 80% and 95% power to detect the replication effect?
```{r}
power_80_n_spatial
```
```{r}
power_95_n_spatial
```
### What proportion of previous experiments had at least 80% power to detect effects the size of the replication effect?
```{r}
smaller_prop_spatial
```
### What is the median power for the replication effect that the previous experiments samples provided?
```{r}
median_power_spatial
```
## Social Distance (Paradigmatic Replication)
### What sample sizes are needed for 80% and 95% power to detect the replication effect?
```{r}
power_80_n_social
```
```{r}
power_95_n_social
```
### What proportion of previous experiments had at least 80% power to detect effects the size of the replication effect?
```{r}
smaller_prop_social
```
### What is the median power for the replication effect that the previous experiments samples provided?
```{r}
median_power_social
```
## Likelihood Distance (Paradigmatic Replication)
### What sample sizes are needed for 80% and 95% power to detect the replication effect?
```{r}
power_80_n_likelihood
```
```{r}
power_95_n_likelihood
```
### What proportion of effects for which previous experiments had 80% power is the replication effect smaller than?
```{r}
smaller_prop_likelihood
```
### What is the median power for the replication effect that the previous experiments samples provided?
```{r}
median_power_likelihood
```