Created
July 31, 2023 14:02
-
-
Save vankesteren/8a22656d1eb7f276c8e8394983f40326 to your computer and use it in GitHub Desktop.
3d-plot of Marchenko-Pastur law
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 3d-plot of Marchenko-Pastur law | |
# p 6 of High-Dim statistics (wainwright) | |
library(rgl) | |
alpha <- seq(0.01, 0.99, 0.01) | |
gamma <- seq(0, 4, length.out = 500) | |
fmp <- function(g, a) { | |
gtmin <- g - (1 - sqrt(a))^2 | |
tmaxg <- (1 + sqrt(a))^2 - g | |
if (gtmin <= 0 | tmaxg <= 0) return(0) | |
sqrt(tmaxg * gtmin) / g # see errata https://people.eecs.berkeley.edu/~wainwrig/highdim_errata.txt | |
} | |
fmpn <- function(g, a) { | |
o <- Vectorize(fmp, "g")(g, a) | |
o/sum(o) | |
} | |
persp3d( | |
x = gamma, | |
y = alpha, | |
z = sapply(alpha, \(a) fmpn(gamma, a)), | |
theta = 110, | |
expand = 0.5, | |
zlab = "Density (rescaled)", | |
border = "#12888855", | |
col = "#12FAFA", | |
nticks = 10 | |
) |
Author
vankesteren
commented
Jul 31, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment