R/tour_andrews.r

#' Andrews Tour Plotting
#' Plots the Andrews Tour in tab g5
#'
#' Sets up the interface for the Andrews tour gui
#'
#' @keywords internal
#' @author Bei Huang\email{beihuang@@iastate.edu}, Di Cook \email{dicook@@iastate.edu}, and Hadley Wickham \email{hadley@@rice.edu} 
# =============================== Gui_andrews ===============================
.interface_andrews = function(g5, data,w){


  # =============== Function: update_tour_andrews ==============
  tour <- NULL
  tour_anim <- NULL
  update_tour_andrews <- function(...) {
    tour <<- .create_andrews_tour(data,
      var_selected = svalue(Variables_andrews),
      cat_selected = svalue(Class_andrews),
      dim_selected = svalue(Dimensions_andrews),
      tour_type = svalue(TourType_andrews),
      guided_type = svalue(GuidedType_andrews),
      lambda = svalue(LambdaValue_andrews),
      aps = svalue(sl_andrews)
    )
    tour_anim <<- with(tour, new_tour(data, tour_path))

    tour$display$init(tour$data)
    tour$display$render_frame()

    TRUE
  }
  # ----------------- End of update_tour_andrews -----------------
  
  
  # =============== Function: draw_frame_andrews ==================
  draw_frame_andrews <- function(...) {
    # if there's no tour, don't draw anything
    if (is.null(tour)) return(FALSE)

    tour_step <- tour_anim(svalue(sl_andrews) / 33)
    if (is.null(tour_step$proj)) return(FALSE)

    if (find_platform()$os == "win") {
      tour$display$render_frame()
    } else {
      tour$display$render_transition()
    }
    with(tour_step, tour$display$render_data(tour$data, proj, target))
    Sys.sleep(1/33)

    TRUE
  }
  # -------------------- End of draw_frame_andrews -----------------

  num <- sapply(data, is.numeric)

# ==================Controls==========================
  vbox_andrews <- glayout(container = g5)

  # Variable selection column
  vbox_andrews[1, 1, anchor = c(-1, 0)] <- "Variable Selection"
  vbox_andrews[2, 1] <- Variables_andrews <- gcheckboxgroup(names(data[num]),
    checked = TRUE, horizontal = FALSE)
  tooltip(Variables_andrews ) <- "Select variables to display in the nD Tour."

  vbox_andrews[3, 1, anchor = c(-1, 0)] <- "Class Selection"
  vbox_andrews[4, 1, anchor = c(-1, 0)] <- Class_andrews <- gtable(names(data)[!num],
    multiple = TRUE)
  tooltip(Class_andrews ) <- "Select a class variable to classify the points."

  # Tour selection column
  vbox_andrews[1, 2, anchor=c(-1, 0)] <- "Tour Type"
  tour_types <- c("Grand", "Little", "Local", "Guided")
  vbox_andrews[2, 2] <- TourType_andrews <- gradio(tour_types)
  tooltip(TourType_andrews ) <- "Select a nD Tour type."

  #Guided indices selection
  vbox_andrews[3, 2, anchor=c(-1, 0)] <- "Guided indices"
  IntIndex <-c("holes","cmass","lda_pp","pda_pp")
  vbox_andrews[4, 2, anchor=c(-1,-1)] <-  GuidedType_andrews <- gdroplist(IntIndex)
  tooltip(GuidedType_andrews) <- "Select an index type for guided tour."

  # Lambda selection
  vbox_andrews[3, 3, anchor=c(-1, 0)] <-"Lambda"
  vbox_andrews[4, 3] <- LambdaValue_andrews <- gslider(from=0, to = 1, by = 0.01,value=0.02)
  #svalue(LambdaValue) <- 0.02
  tooltip(LambdaValue_andrews) <- "Select lambda's value to calculate pda index."

  # dimension control
  vbox_andrews[1, 3, anchor = c(-1, 0)] <- "Choose Dimension"
  dimensions <- c(2:length(data[num]))
  vbox_andrews[2, 3, anchor = c(-1, 0)] <- Dimensions_andrews <- gradio(dimensions)
  tooltip(Dimensions_andrews ) <- "Select dimension number n for displaying the nD Tour."

  # speed and pause
  vbox_andrews[5,1, anchor = c(-1, 0)] <- "Speed"
  vbox_andrews[6,1, expand = TRUE] <- sl_andrews <- gslider(from = 0, to = 5, by = 0.1, value = 1)
  tooltip(sl_andrews ) <- "Drag to set the speed of the nD Tour."

  vbox_andrews[6, 2] <- chk_pause_andrews<- gcheckbox("Pause",
    handler = function(h, ...) pause_andrews(svalue(h$obj)))
  tooltip(chk_pause_andrews ) <- "Click here to pause or continue the nD Tour."

  # buttons control
anim_id <- NULL
  pause_andrews <- function(paused) {
    svalue(chk_pause_andrews) <- paused
    if (paused) {
      gtkIdleRemove(anim_id)
      anim_id <- NULL
    } else {
      if (!is.null(anim_id)) gtkIdleRemove(anim_id)
      anim_id <<- gIdleAdd(draw_frame_andrews)
    }
  }
  buttonGroup_andrews <- ggroup(horizontal = FALSE, container = vbox_andrews)

  # addSpace(buttonGroup,10)
  button1_andrews <- gbutton("Apply", container = buttonGroup_andrews, handler = function(...) {
    print("apply from gui_andrews")
    opar <- par(mfrow = c(1,1))
    pause_andrews(FALSE)
    update_tour_andrews()
  })
  tooltip(button1_andrews ) <- "Click here to update the options."

  # addSpace(buttonGroup,10)
  button2_andrews <- gbutton("Quit",container = buttonGroup_andrews, handler = function(...) {
    pause_andrews(TRUE)
    dispose(w)
  })
  tooltip(button2_andrews ) <- "Click here to close this window."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         

  vbox_andrews[5:6, 3, anchor = c(0, 1)] <- buttonGroup_andrews

}
# ----------------------------- End of Gui_andrews ----------------------------------

Try the tourrGui package in your browser

Any scripts or data that you put into this service are public.

tourrGui documentation built on May 2, 2019, 5:51 a.m.