R/tour_pcp.r

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

  # ================= Function: update_tour_pcp ==================
  tour <- NULL
  tour_anim <- NULL
  update_tour_pcp <- function(...) {
    tour <<- .create_pcp_tour(data,
      var_selected = svalue(Variables_pcp),
      cat_selected = svalue(Class_pcp), 
      dim_selected = svalue(Dimensions_pcp),
      tour_type = svalue(TourType_pcp),
      guided_type = svalue(GuidedType_pcp),
      lambda = svalue(LambdaValue_pcp),
      aps = svalue(sl_pcp)
    )
    tour_anim <<- with(tour, new_tour(data, tour_path))

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

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

    tour_step <- tour_anim(svalue(sl_pcp) / 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_pcp -----------------

  num <- sapply(data, is.numeric)
  # ================== Controls ==========================
  vbox_pcp <- glayout(container = g7)

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


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

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

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

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

  # dimension control
  vbox_pcp[1, 3, anchor = c(-1, 0)] <- "Choose Dimension"
  dimensions <- c(2:length(data[num]))
  vbox_pcp[2, 3, anchor = c(-1, 0)] <- Dimensions_pcp <- gradio(dimensions)
  tooltip(Dimensions_pcp) <- "Select axes number of the parallel coordinates."

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

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

  # buttons control
  anim_id <- NULL
  pause_pcp <- function(paused) {
    svalue(chk_pause_pcp) <- paused
    if (paused) {
      gtkIdleRemove(anim_id)
      anim_id <- NULL
    } else {
      if (!is.null(anim_id)) gtkIdleRemove(anim_id)
      anim_id <<- gIdleAdd(draw_frame_pcp)
    }
  }
  buttonGroup_pcp <- ggroup(horizontal = FALSE, container = vbox_pcp)

  # addSpace(buttonGroup,10)
  button1_pcp<-gbutton("Apply", container = buttonGroup_pcp, handler = function(...){
    print("apply from gui_pcp")
    opar <- par(mfrow = c(1,1))
    pause_pcp(FALSE)
    update_tour_pcp()
  })
  tooltip(button1_pcp) <- "Click here to update the options."

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

  vbox_pcp[5:6, 3, anchor = c(0, 1)] <- buttonGroup_pcp
  
}
# ------------------------------ End of Gui_pcp ---------------------------------

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.