From 1812d1fbefc5a46be652596652f7f051595e6eea Mon Sep 17 00:00:00 2001 From: alexandre-leonard <76570672+alexandre-leonard@users.noreply.github.com> Date: Mon, 28 Dec 2020 15:07:59 +0100 Subject: [PATCH] Update objects.rmd 3 dimensions mean just a cube, not an hypercube. This is also mentioned (correctly) some lines below. --- objects.rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects.rmd b/objects.rmd index ce82142..092aa69 100644 --- a/objects.rmd +++ b/objects.rmd @@ -340,7 +340,7 @@ die ## [3,] 3 6 ``` -or a 1 × 2 × 3 hypercube (which has 1 row, 2 columns, and 3 "slices"). This is a three-dimensional structure, but R will need to show it slice by slice by slice on your two-dimensional computer screen: +or a 1 × 2 × 3 cube (which has 1 row, 2 columns, and 3 "slices"). This is a three-dimensional structure, but R will need to show it slice by slice on your two-dimensional computer screen: ```r dim(die) <- c(1, 2, 3)