8000 ci fix · plotly/plotly.r-docs@dce13a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit dce13a9

Browse files
author
mahdis-z
committed
ci fix
1 parent 9f5fbef commit dce13a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ggplot2/2019-07-30-geom_text.Rmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ recent_turnout <- read.csv("https://raw.githubusercontent.com/plotly/datasets/ma
2424
recent_turnout$region <- factor(recent_turnout$region, levels=c("British","Northern","Western","Mediterranean","Central/Eastern"))
2525
2626
library(plotly)
27-
fig <- recent_turnout %>%
27+
p <- recent_turnout %>%
2828
ggplot(aes(x=nat_turnout,y=euro_turnout)) +
2929
geom_text(aes(size=population/3.5, label=abbreviation, colour=region), alpha=1) +
3030
labs(title = "Recent turnout in European Union countries",
@@ -45,7 +45,7 @@ recent_turnout <- read.csv("https://raw.githubusercontent.com/plotly/datasets/ma
4545
recent_turnout$region <- factor(recent_turnout$region, levels=c("British","Northern","Western","Mediterranean","Central/Eastern"))
4646
4747
library(plotly)
48-
fig <- recent_turnout %>%
48+
p <- recent_turnout %>%
4949
ggplot(aes(x=nat_turnout,y=euro_turnout)) +
5050
geom_point(aes(size=population, colour=region, text=paste("country:", country)), alpha=0.4) +
5151
geom_text(aes(size=population/3.5, label=abbreviation), colour="gray20", alpha=1) +
@@ -66,7 +66,7 @@ recent_turnout$region <- factor(recent_turnout$region, levels=c("British","North
6666
6767
library(plotly)
6868
library(LaCroixColoR)
69-
fig <- recent_turnout %>%
69+
p <- recent_turnout %>%
7070
ggplot(aes(x=nat_turnout,y=euro_turnout)) +
7171
geom_point(aes(size=population, colour=region, text=paste("country:", country)), alpha=0.4) +
7272
geom_text(aes(size=population/3.5, label=abbreviation), colour="gray20", alpha=1) +
@@ -90,7 +90,7 @@ m <- lm(euro_turnout ~ nat_turnout, data = recent_turnout)
9090
9191
library(plotly)
9292
library(LaCroixColoR)
93-
fig <- recent_turnout %>%
93+
p <- recent_turnout %>%
9494
ggplot(aes(x=nat_turnout,y=euro_turnout)) +
9595
stat_smooth(geom="line", method="lm", alpha=0.3, se=FALSE) +
9696
geom_point(aes(size=population, colour=region, text=paste("country:", country)), alpha=0.4) +
@@ -119,7 +119,7 @@ m <- lm(euro_turnout ~ nat_turnout, data = recent_turnout)
119119
120120
library(plotly)
121121
library(LaCroixColoR)
122-
fig <- recent_turnout %>%
122+
p <- recent_turnout %>%
123123
ggplot(aes(x=nat_turnout,y=euro_turnout)) +
124124
stat_smooth(geom="line", method="lm", alpha=0.3, se=FALSE) +
125125
geom_point(aes(size=population, colour=region, text=paste("country:", country)), alpha=0.4) +

0 commit comments

Comments
 (0)
0