bigKRLS (version 3.0.5.1)

shiny.bigKRLS: shiny.bigKRLS

Description

shiny.bigKRLS

Usage

shiny.bigKRLS(out, export = FALSE, main.label = "bigKRLS estimates",
  plot.label = NULL, xlabs = NULL, font_size = 20, hline = 0,
  shiny.palette = c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3",
  "#FF7F00", "#FFFF33", "#A65628", "#F781BF", "#999999"))

Arguments

out

bigKRLS output. Does not require any N * N matrices.

export

Logical. Instead of running Shiny, prepare the key estimates as a separate file.

main.label

Main label (upper left of app)

plot.label

Optional character

xlabs

Optional character vector for the x variables.

font_size

Font size. Default == 20. calls "ggplot2::theme_minimal(base_size = font_size)"

hline

horizontal line. Default == 0 (x axis)

shiny.palette

color scheme for main app. 9 colors.

Examples

Run this code
# NOT RUN {
# N <- 500
# P <- 4
# X <- matrix(rnorm(N*P), ncol=P)

# b <- 1:P 
# y <- sin(X[,1]) + X %*% b + rnorm(N)

# out <- bigKRLS(y, X, Ncores=1)
# shiny.bigKRLS(out, "exciting_results", "The Results", c("Frequency", "xA", "xB", "xC"))
# }

Run the code above in your browser using DataCamp Workspace