Get the local pseudo-p values of significance returned from LISA computation.
lisa_pvalues(gda_lisa)
A numeric vector of pseudo-p values of local spatial autocorrelation
if (FALSE) { # \dontrun{
library(sf)
guerry_path <- system.file("extdata", "Guerry.shp", package = "rgeoda")
guerry <- st_read(guerry_path)
queen_w <- queen_weights(guerry)
lisa <- local_moran(queen_w, guerry["Crm_prs"])
pvals <- lisa_pvalues(lisa)
pvals
} # }