Skip to content

Commit 67867b6

Browse files
author
mahdis-z
committed
fix ci
1 parent bbfc0ee commit 67867b6

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

r/2015-07-30-line-plot-maps.Rmd

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,9 @@ df <- read.csv('https://raw.githubusercontent.com/plotly/datasets/master/globe_c
101101
df$id <- seq_len(nrow(df))
102102
103103
library(tidyr)
104-
d <- df
105-
fig <- fig %>%
106-
gather(key, value, -id)
107-
fig <- fig %>%
108-
separate(key, c("l", "line"), "\\.")
109-
fig <- fig %>%
104+
d <- df %>%
105+
gather(key, value, -id) %>%
106+
separate(key, c("l", "line"), "\\.") %>%
110107
spread(l, value)
111108
112109
geo <- list(

0 commit comments

Comments
 (0)