8000 fix master by installing plotly from devtools · plotly/plotly.r-docs@02eae7d · GitHub
[go: up one dir, main page]

Skip to content

Commit 02eae7d

Browse files
author
Joseph Damiba
committed
fix master by installing plotly from devtools
1 parent c0e461c commit 02eae7d

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- checkout
1212
- restore_cache:
1313
keys:
14-
- cache2
14+
- cache3
1515
- run:
1616
name: Install container-level dependencies
1717
command: |
@@ -25,9 +25,9 @@ jobs:
2525
name: install application-level dependencies
2626
command: |
2727
sudo apt-get install -y pandoc libudunits2-dev libgdal-dev libxt-dev libglu1-mesa-dev
28-
sudo R -e 'install.packages(c("curl", "devtools", "mvtnorm")); devtools::install_github("hypertidy/anglr"); devtools::install_github("johannesbjork/LaCroixColoR"); devtools::install_deps(dependencies = TRUE) '
28+
sudo R -e 'install.packages(c("curl", "devtools", "mvtnorm")); devtools::install_github("hypertidy/anglr"); devtools::install_github("johannesbjork/LaCroixColoR"); devtools::install_github("ropensci/plotly"); devtools::install_deps(dependencies = TRUE) '
2929
- save_cache:
30-
key: cache2
30+
key: cache3
3131
paths:
3232
- "/usr/local/lib/R/site-library"
3333
- store_artifacts:

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Package: Plotly's R graphing library.
22
Imports:
3-
plotly,
43
geomorph,
54
maptools,
65
rjson,

r/2019-09-17-funnel-charts.Rmd

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ output:
1717
knitr::opts_chunk$set(message = FALSE, warning=FALSE)
1818
```
1919

20-
21-
```{r, echo=FALSE, message=FALSE, results="hide"}
22-
# Install plotly from github for funnel plot
23-
devtools::install_github("ropensci/plotly")
24-
```
2520
### Introduction
2621
Funnel charts are often used to represent data in different stages of a business process. It’s an important mechanism in Business Intelligence to identify potential problem areas of a process. For example, it’s used to observe the revenue or loss in a sales process for each stage, and displays values that are decreasing progressively. Each stage is illustrated as a percentage of the total of all values.
2722

0 commit comments

Comments
 (0)
0