Skip to content

Commit

Permalink
re-build pkgdown
Browse files Browse the repository at this point in the history
  • Loading branch information
friendly committed Dec 5, 2023
1 parent 6e752d6 commit a2a6c8c
Show file tree
Hide file tree
Showing 161 changed files with 1,550 additions and 92 deletions.
4 changes: 2 additions & 2 deletions R/ellipse.axes.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#' mu <- colMeans(iris[,1:2])
#'
#' radius <- sqrt(qchisq(0.68, 2))
#' plot(iris[,1:2])
#' plot(iris[,1:2], asp=1)
#' car::ellipse(mu, cov, radius = radius)
#' res <- ellipse.axes(cov, centre=mu, level = 0.68,
#' labels = TRUE)
Expand Down Expand Up @@ -84,7 +84,7 @@ ellipse.axes <- function(
# transform to PC axes
result <- axes %*% sqrt(diag(eig$values)) %*% t(eig$vectors)
# scale
result <- result %*% diag(rep(t, 2))
result <- result %*% diag(rep(radius, 2))
# center
result <- sweep(result, 2L, centre, FUN="+")
colnames(result) <- colnames(cov)
Expand Down
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ reference:
- cross3d
- etasq
- Ellipsoid
- ellipse.axes
- ellipse3d.axes
- gsorth
- interpPlot
Expand Down
4 changes: 2 additions & 2 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/HE_manova.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/HE_mmra.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a2a6c8c

Please sign in to comment.