std.e...² stati...³ p.value
##
<fct>
<int> <list>
<lis> <chr>
<dbl>
<dbl>
<dbl>
<dbl>
##
1 Asia
1952 <tibble [33 × 4]> <lm>
log(...
4.16
1.25
3.33 2.28e-3
##
2 Asia
1957 <tibble [33 × 4]> <lm>
log(...
4.17
1.28
3.26 2.71e-3
##
3 Asia
1962 <tibble [33 × 4]> <lm>
log(...
4.59
1.24
3.72 7.94e-4
##
4 Asia
1967 <tibble [33 × 4]> <lm>
log(...
4.50
1.15
3.90 4.77e-4
##
5 Asia
1972 <tibble [33 × 4]> <lm>
log(...
4.44
1.01
4.41 1.16e-4
##
6 Asia
1977 <tibble [33 × 4]> <lm>
log(...
4.87
1.03
4.75 4.42e-5
##
7 Asia
1982 <tibble [33 × 4]> <lm>
log(...
4.78
0.852
5.61 3.77e-6
##
8 Asia
1987 <tibble [33 × 4]> <lm>
log(...
5.17
0.727
7.12 5.31e-8
##
9 Asia
1992 <tibble [33 × 4]> <lm>
log(...
5.09
0.649
7.84 7.60e-9
## 10 Asia
1997 <tibble [33 × 4]> <lm>
log(...
5.11
0.628
8.15 3.35e-9
## # ... with 38 more rows, and abbreviated variable names ¹
estimate, ²std.error,
## #
³statistic
p
<-
ggplot
(
data =
out_tidy,
mapping =
aes
(
x =
year,
y =
estimate,
ymin =
estimate
-
2
*
std.error,
ymax =
estimate
+
2
*
std.error,
group =
continent,
color =
continent))
p
+
geom_pointrange
(
position =
position_dodge
(
width =
1
))
+
scale_x_continuous
(
breaks =
unique
(gapminder
$
year))
+
theme
(
legend.position =
"top"
)
+
labs
(
x =
"Year"
,
y =
"Estimate"
,
color =
"Continent"
)