Questions tagged [rgui]

63 questions
2
votes
1 answer

Name R's Multiple Open Sessions

I have many R sessions open. Searched in Rgui Options, not sure how to name each of the sessions that are open and in use. Searched in GUI Preferences in R, couldn't get any help. Checked on how to do it with commands, it says each session has its…
Sowmya S. Manian
  • 3,723
  • 3
  • 18
  • 30
2
votes
0 answers

Command line R not recognizing two keys

New to R, but never have seen anything similar in any other context or application. Recently downloaded R 3.3.3 "Another Canoe" into a Windows 10 machine. When in "command line R" (i.e., just invoking the command "r" at the Windows command line),…
D Collins
  • 85
  • 7
2
votes
1 answer

tcltk not loading and causes R-gui to become unresponsive or crash

I've run into a problem with getting tcltk to run properly on r-gui. It's a required package for one of the packages (aplpack) I'd like to work with. Preliminary Stuff 13" Macbook Air OSX Yosemite - Version 10.10.5 R Version 3.2.3 R.app GUI 1.66…
jrp355
  • 83
  • 8
2
votes
0 answers

Rcmdr BiodiversityR GUI Crash on Mac OSX

Running Fully updated: MACOSX 10.10.4 , R 3.2.1 World Famous Astronaut , R commander 2.1.7 , X11 2.7.7, Java 8, Biodiversity R 2.5.2 When i run script/data/commands that I know should work in Biodiversity R, I can run analysis, but when i try to…
E.L.
  • 21
  • 4
2
votes
0 answers

Autosave R sources in RGui

Is it possible to tell RGui to autosave the *.R sources, so that they don't get lost in case of system crash? I miss this feature a lot since my system crashes now and then and I don't want to work with R-Studio or some other IDEs just because I…
Tomas
  • 57,621
  • 49
  • 238
  • 373
2
votes
3 answers

How can I return column title within data.frame only if it contains a value of interest?

I have a data.frame containing multiple columns made up of TRUE and FALSE logical answers, as so: >` . X1 X2 X3 X4 X5 X6 X7 X8 [1,] FALSE FALSE FALSE TRUE FALSE FALSE FALSE TRUE [2,] FALSE FALSE FALSE FALSE FALSE FALSE…
Kevin
  • 89
  • 1
  • 5
2
votes
1 answer

R and gWidgets: Event trigger on close of a widget

I'm currently working on a small GUI based application using gWidgets (RGtk2). I've encountered a question which I was unable to solve by myself using the documentation provided in the gWidgets package: Is it possible to trigger an event, i.e. a…
user1356695
  • 217
  • 1
  • 4
  • 13
2
votes
1 answer

R console: single line instructions vs multiple lines instructions

I noticed that, in some cases (I am still a beginner at R!), multi lines instructions cannot be merged 'as is' into simple lines instructions. Let's take an example, which is in a lesson I recently had on line: > make.power <- function(n) { + …
Philippe Grondier
  • 10,900
  • 3
  • 33
  • 72
1
vote
0 answers

using the windows-cmd to start the RGTK2 based GUI

I would like to use the windows-cmd to start R code that was a GUI depending on RGTK2. For example , named mycode.R library(RGtk2) library(gWidgets2) library(gWidgets2RGtk2) G.window <- gwindow() this code can be done in the R and…
Hees
  • 111
  • 1
  • 9
1
vote
0 answers

Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : there is no package called ‘rstatix’

I'm trying to use fviz_pca_ind, but I get the following error > fviz_pca_ind(res.Fr_Temp) Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : there is no package called ‘rstatix’ > I tried to install…
1
vote
0 answers

R help command doesn't show R help home page

I have embedded R into Qt application (DyLoad R.dll and set bunch of callbacks e.g ReadConsole, WriteConsole etc). On CentOS7.4, when i execute help.start() it brings up web page, but thd web page is always waiting on server response. The status…
1
vote
1 answer

How does R (RGui) parse multiline character strings?

The RGui (Windows; R version 3.5.3) appears to ignore tab characters that occur at the beginning of a line within a character string (press CTRL+R over the lines of code): # REPLACE "" WITH AN ACTUAL TAB CHARACTER TO GET THE CODE INTENDED…
Ana Nimbus
  • 635
  • 3
  • 16
1
vote
0 answers

R gui does not open from command prompt

R GUI does not open in windows command prompt Have tried following code in R-TestRGUI.R library(gWidgets) library(gWidgetstcltk) lmwidget <- ggenericwidget(lm) Tried calling the above script in command line using the following code "C:\Program…
srinivas
  • 37
  • 7
1
vote
0 answers

R - SixSigma - ss.study.ca

when I run ss.study.ca example at website "https://rdrr.io/cran/SixSigma/man/ss.study.ca.html" , the graphic shows the Ppk value (Bottom-Right). When I run it locally using Tinn-R or RGui, this Ppk value does not appear. I have install the software…
1
vote
0 answers

How to fill up a large table with new data from small table by matching unique names in both tables. Fill columns but leave original data untouched?

I have large and a small table (in fact thousands of rows and columns). E.g. large <- data.frame(v1 = c(1,2,NA,4,NA,6,NA,NA),v2 = c("A","E","C","B","G","H","Z","Y")) small <- data.frame(v3 = c("C","Y"), v4 = c("3.4","6")) Note the unique…