Skip to content

Commit debd902

Browse files
committed
Merge branch 'master' of github.com:andrie/ggdendro
2 parents 7ebfeb4 + 4d6fec2 commit debd902

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vignettes/ggdendro.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ library(ggdendro)
3434

3535
## Using the `ggdendrogram()` wrapper
3636

37-
The `ggdendro` package extracts the plot data from dendrogram objects. Sometimes it is useful to have fine-grained control over the plot. Other times it might be more convenient to have a simple wrapper around `ggplot` to produce a dendrogram with a small amount of code.
37+
The `ggdendro` package extracts the plot data from dendrogram objects. Sometimes it is useful to have fine-grained control over the plot. Other times it might be more convenient to have a simple wrapper around `ggplot()` to produce a dendrogram with a small amount of code.
3838

39-
The function `ggdendrogram` provides such a wrapper to produce a plot with a single line of code. It provides a few options for controlling the display of line segments, labels and plot rotation (rotated by 90 degrees or not).
39+
The function `ggdendrogram()` provides such a wrapper to produce a plot with a single line of code. It provides a few options for controlling the display of line segments, labels and plot rotation (rotated by 90 degrees or not).
4040

4141
```{r dendrogram}
4242
hc <- hclust(dist(USArrests), "ave")
@@ -113,7 +113,7 @@ if(require(tree)){
113113

114114
## Classification tree diagrams
115115

116-
The `rpart()` function in package `rpart()` creates classification diagrams. To extract the plot data for these diagrams using `ggdendro` follows the same basic pattern as dendrograms:
116+
The `rpart()` function in package `rpart` creates classification diagrams. To extract the plot data for these diagrams using `ggdendro` follows the same basic pattern as dendrograms:
117117

118118
```{r rpart}
119119
if(require(rpart)){

0 commit comments

Comments
 (0)