Learn R Programming

easySdcTable (version 1.0.7)

PTgui: Table suppression - Shiny Gui

Description

Run PTgui from the R console or use PTguiApp to make a server application

Usage

PTgui(
  data = NULL,
  language = "English",
  exeArgus = NULL,
  pathArgus = getwd(),
  maxNchoices = c(1:10, 12, 15, 20),
  ...
)

PTguiApp( language = "English", exeArgus = NULL, pathArgus = "", maxNchoices = c(1:10, 12, 15, 20), ... )

PTguiNO( data = NULL, language = "Norwegian", exeArgus = NULL, pathArgus = getwd(), maxNchoices = c(1:10, 12, 15, 20), ... )

PTguiAppNO( language = "Norwegian", exeArgus = NULL, pathArgus = "", maxNchoices = c(1:10, 12, 15, 20), ... )

Value

Output from ProtectTable. The output is returned invisibly (via invisible) which means that it is not automatically printed to the console.

Arguments

data

NULL or a data.frame

language

Menu language, "English" or "Norwegian".

exeArgus

Tau-argus executable

pathArgus

Folder for (temporary) tau-argus files

maxNchoices

Choices of maxN

...

Further parameters sent to ProtectTable

Examples

Run this code
  if (FALSE) {
  
# Start the gui.
PTgui()

# Start Norwegian gui with example data and catch output
out <- PTguiNO(data=EasyData("z1w"))   

# Note: Change to TauArgus.exe-path in your computer
exeArgus <- "C:/TauArgus4.2.0b2/TauArgus.exe"

# Note: Change to an existing folder 
pathArgus <- "C:/Users/nnn/Documents"
    
# Start the gui with possibility to run tau-argus.       
PTgui(exeArgus=exeArgus, pathArgus=pathArgus)     
  
  }


Run the code above in your browser using DataLab