File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ Also [adjusted the theme](https://ggplot2.tidyverse.org/reference/ggtheme.html).
70
70
71
71
``` {r, results='hide'}
72
72
library(plotly)
73
+ spinrates <- read.csv("https://raw.githubusercontent.com/plotly/datasets/master/spinrates.csv",
74
+ stringsAsFactors = FALSE)
73
75
74
76
p <- ggplot(spinrates, aes(x=velocity, y=spinrate)) +
75
77
geom_tile(aes(fill = swing_miss)) +
@@ -94,6 +96,8 @@ chart_link
94
96
95
97
``` {r, results='hide'}
96
98
library(plotly)
99
+ spinrates <- read.csv("https://raw.githubusercontent.com/plotly/datasets/master/spinrates.csv",
100
+ stringsAsFactors = FALSE)
97
101
98
102
p <- ggplot(spinrates, aes(x=velocity, y=spinrate)) +
99
103
geom_tile(aes(fill = swing_miss)) +
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ Also [adjusted the theme](https://ggplot2.tidyverse.org/reference/ggtheme.html).
71
71
72
72
``` r
73
73
library(plotly )
74
+ spinrates <- read.csv(" https://raw.githubusercontent.com/plotly/datasets/master/spinrates.csv" ,
75
+ stringsAsFactors = FALSE )
74
76
75
77
p <- ggplot(spinrates , aes(x = velocity , y = spinrate )) +
76
78
geom_tile(aes(fill = swing_miss )) +
@@ -94,6 +96,8 @@ chart_link
94
96
95
97
``` r
96
98
library(plotly )
99
+ spinrates <- read.csv(" https://raw.githubusercontent.com/plotly/datasets/master/spinrates.csv" ,
100
+ stringsAsFactors = FALSE )
97
101
98
102
p <- ggplot(spinrates , aes(x = velocity , y = spinrate )) +
99
103
geom_tile(aes(fill = swing_miss )) +
You can’t perform that action at this time.
0 commit comments