You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.Rmd
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,14 @@ html_preview: false
7
7
8
8
[](http://www.repostatus.org/#active)
@@ -46,7 +47,12 @@ Here is one option that solves that problem.
46
47
47
48
## Installation
48
49
49
-
You can install `ggghost` from github with:
50
+
You can install `ggghost` from CRAN with:
51
+
52
+
```{r, eval=FALSE}
53
+
install.packages("ggghost")
54
+
```
55
+
or the development version from github with:
50
56
51
57
```{r, eval=FALSE}
52
58
# install.packages("devtools")
@@ -153,4 +159,4 @@ We now have a proper reproducible graphic.
153
159
154
160
* The data _must_ be used as an argument in the `ggplot` call, not piped in to it. Pipelines such as `z %g<% tmpdata %>% ggplot()` won't work... yet.
155
161
* Only one original data set will be stored; the one in the original `ggplot(data = x)` call. If you require supplementary data for some `geom` then you need manage storage/consistency of that.
156
-
* For removing `labs` calls, an argument _must_ be present. It doesn't need to be the actual one (all will be removed) but it must evaluate in scope. `TRUE` will do fine.
162
+
* For removing `labs` calls, an argument _must_ be present. It doesn't need to be the actual one (all will be removed) but it must evaluate in scope. `TRUE` will do fine.
0 commit comments