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
+20-6Lines changed: 20 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,17 +21,21 @@ devtools::load_all()
21
21
<!-- badges: end -->
22
22
23
23
{gggda} extends [{ggplot2}](https://github.com/tidyverse/ggplot2) with coordinate systems, statistical transformations, and geometric constructions useful to the analysis and visualization of multivariate data, including bivariate generalizations of univariate tools and tools designed for geometric data analysis and ordination.
24
-
25
24
It is spun off from and designed to interoperate with [{ordr}](https://github.com/corybrunson/ordr).
26
-
However, the two packages remain to be completely harmonized.
27
25
28
26
## usage
29
27
30
28
### installation
31
29
32
-
{gggda} is not yet on CRAN and can be installed as follows using [{pak}](https://github.com/r-lib/pak):
30
+
{gggda} is now on CRAN and can be installed in the standard way:
31
+
32
+
```{r install cran, eval=FALSE}
33
+
install.packages("gggda")
34
+
```
35
+
36
+
Or install the development version as follows using [{pak}](https://github.com/r-lib/pak):
33
37
34
-
```{r install, eval=FALSE}
38
+
```{r install github, eval=FALSE}
35
39
pak::pkg_install("corybrunson/gggda")
36
40
```
37
41
@@ -63,7 +67,7 @@ ggplot(mpg, aes(displ, cty, color = drv, fill = drv)) +
63
67
stat_center(fun.ord = depth_median)
64
68
```
65
69
66
-
Several new geometric constructions have a wide range of uses, including biplots, with two-dimensional errorbars an underused example:
70
+
Several new geometric constructions have a wide range of uses, including biplots, with two-dimensional errorbars being an underused example:
67
71
68
72
```{r geom}
69
73
# centroids with 2-standard deviation bars for both variables
0 commit comments