diff --git a/pkgdown.yml b/pkgdown.yml index 1dc675c..62dd25e 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 2.19.2 pkgdown: 2.0.7 pkgdown_sha: ~ articles: {} -last_built: 2024-01-14T06:34Z +last_built: 2024-01-15T10:45Z urls: reference: http://r-pkg.thecoatlessprofessor.com/drawr/reference article: http://r-pkg.thecoatlessprofessor.com/drawr/articles diff --git a/reference/Rplot004.png b/reference/Rplot004.png index 8568d17..ac48675 100644 Binary files a/reference/Rplot004.png and b/reference/Rplot004.png differ diff --git a/reference/Rplot008.png b/reference/Rplot008.png index 7e5fd4e..cb652bf 100644 Binary files a/reference/Rplot008.png and b/reference/Rplot008.png differ diff --git a/reference/draw-matrix-4.png b/reference/draw-matrix-4.png index feda6cf..937821f 100644 Binary files a/reference/draw-matrix-4.png and b/reference/draw-matrix-4.png differ diff --git a/reference/draw-matrix-8.png b/reference/draw-matrix-8.png index 76dfb1e..d069269 100644 Binary files a/reference/draw-matrix-8.png and b/reference/draw-matrix-8.png differ diff --git a/reference/draw-vector-1.png b/reference/draw-vector-1.png index d47f15a..a3ca042 100644 Binary files a/reference/draw-vector-1.png and b/reference/draw-vector-1.png differ diff --git a/reference/draw-vector.html b/reference/draw-vector.html index 5fd5500..948d48a 100644 --- a/reference/draw-vector.html +++ b/reference/draw-vector.html @@ -51,9 +51,12 @@
draw_vector(
data,
layout = c("vertical", "horizontal"),
- show_cell_indices = FALSE,
+ show_indices = c("none", "inside", "outside"),
highlight_area = rep(FALSE, length(data)),
- highlight_color = "lemonchiffon"
+ highlight_color = "lemonchiffon",
+ graph_title = paste0("Data Object: ", deparse(substitute(data))),
+ graph_subtitle = paste0("Length: ", paste(length(data), "elements"), " | ",
+ "Data Type: ", paste0(class(data), collapse = ", "))
)
Display cell indices inside the matrix cell, e.g. [i]
. Default: FALSE
Display data indices either: "inside"
, "outside"
, or "none"
+the vector cell, e.g. [i]
. Default: "none"