Displaying 20 results from an estimated 1100 matches similar to: "Graphical device questions!"
2024 Nov 20
1
grDevices::bringToTop is documented but not available: A bug?
There is help for grDevices::bringToTop but the function is
not present.
> bringToTop()
Error in bringToTop() : could not find function "bringToTop"
> grDevices::bringToTop()
Error: 'bringToTop' is not an exported object from 'namespace:grDevices'
> getAnywhere(bringToTop)
no object named ?bringToTop? was found
# help output:
> ?bringToTop
bringToTop         
2024 Nov 21
1
grDevices::bringToTop is documented but not available: A bug?
It's a Windows-only function.  It looks like revision r75103 moved it 
out of the Windows section of the help pages six years ago.  Some other 
help pages were similarly moved, e.g.
   - ?windows and ?windowsFonts, document the functions as being 
Windows-only.
   - ?msgWindow and ?windows.options have the same issue as ?bringToTop.
Maybe someone remembers the intention of that move...
2008 Aug 19
1
Enhancement request for bringToTop()
Currently (R-2.7.1 on Windows)
   bringToTop(stay=TRUE)
when run before a device is opened, gives the error message
> bringToTop(stay=TRUE)
Error in bringToTop(stay = TRUE) : 
  can only bring windows devices to the front
>
In the same circumstances, a call to par() opens a device.
My request is to modify bringToTop().  If bringToTop()
determines that it is running in an interactive
2003 Jul 18
1
bringToTop() when some windows been closed (PR#3512)
Full_Name: Henrik Bengtsson
Version: R v1.7.1
OS: WinXP Pro
Submission from: (NULL) (130.235.2.229)
bringToTop() does not work if some windows has been closed. Example:
graphics.off()
x11()         # opens Figure 2
x11()         # opens Figure 3
dev.set(2) 
dev.off()     # closes Figure 2
bringToTop(3) # Gives an error
# Error in bringToTop(as.integer(which)) : invalid value of `which'
2001 Oct 08
2
Rcmd
Hola!
I have problems running Rcmd check (windows 98, R1.3.0)
It ckoks on an example running a function which calla bringToTop().
This makes an error because Rcmd check runs the examples with the
postscript device, and bringToTop does not make sense with that device.
Howevere, my function is for interactive use, and needs bringToTop. 
How can this be used in examples and still have the
2006 Aug 03
2
bringToTop without focus?
Hi all who know R on Windows,
Quick question: Is there a way to do "bringToTop(stay=TRUE)" without giving "focus"? I would like to pop a graph window but I would like to preserve focus in the window which I was in before. 
Thanks for any lead,
Chris
2007 Jun 05
2
biplot package
Dears,
I've been learning biplot (Gabriel, 1971) and I found the function 'biplot', inside of the package 'stats',
useful but, a bit limited.
So, I'm thinking to start a colaborative package to enhance this methods to other multivariate methods. In this
way, I would like to start it, making public a new function (biplot.pca, still in development, but running)
that make
2001 Jan 19
2
bringToTop() fails (PR#818)
windows()
plot(1,1)
windows()
plot(1:2,1:2)
dev.list() # we have devices 2 and 3
# device 3 is active and in front
bringToTop(2) # does not work
bringToTop(3) # does not work also
Regards
Jens Oehlschlaegel
--please do not edit the information below--
Version:
 platform = i386-pc-mingw32
 arch = x86
 os = Win32
 system = x86, Win32
 status = 
 major = 1
 minor = 2.1
 year = 2001
 month = 01
2005 Oct 24
0
Charset issue with Samba 3.0.* and AIX5.2 ML5
Hey,
I have AIX5.2 running with en_US ( ISO8859-1) as charset (see smitty
shot bellow).
                                   Change/Show Cultural Convention,
Language, or Keyboard
  Primary CULTURAL convention                         ISO8859-1  English
(United States) [en_US]                          +
  Primary LANGUAGE translation                        ISO8859-1  English
(United States) [en_US]
2010 Nov 11
3
User input after opening graphing device
If I run the following:  
 
> windows()          
> 
> bringToTop(-1)
> 
> interactive()
[1] TRUE
> 
> run <- readline(prompt = "Continue (Yes = 1, No = 2):")      
Continue (Yes = 1, No = 2):
> dummy <- 1
> run
[1] ""
it does not allow user input though the session is interactive (it jumps right over the readline command). 
It would be great
2011 Oct 31
2
assignment operator <- does not work in a function...
Dear Users,
I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried on both 2.13.1 and 2.13.2) as below using arules and arulseViz packages:
>kuralfonk
function()
{
        require(arules)
        require(arulesViz)
       
2008 Jan 18
1
Question about making active a previously opened graphic device
Hi,
 
I have opened 2 different graphic devices on screen with windows(3) and Windows(4) (I already have had an other graphic on screen opened in device 2).
 
Now device 3 is inactive and device 4 is active. How i can make device 3 active to plot in device 3 and after make device 4 active to have a different plot in it?? For what i am doing it is important to first open the graphic devices -
2002 Oct 02
2
output from script
Hi,
perhaps the answer to my question is obvious and I didn?t find it because I?m new to R ...
The problem is as follows:
I read some data from file, do some commands which are well processed and finally make some graphics. OK
Then I put these commands together in a *.R file which I can process ...
Among these i. e. is
sum_input = summary(mydatatable)
sum_input
.....
plot(mydatatable)
What
2004 Apr 14
1
Passing a pointer to .C() in Win32
Hi,
Is there any way to pass an integer from R to C and have 
it cast as a pointer?  
# Win32 Example:
library(tcltk)
tt <- tktoplevel()
hWndString <- tclvalue(tkwm.frame(tt))
# I'll avoid posting code to this function:
source("http://bioinf.wehi.edu.au/folders/james/R/hexStringToDecimalInteger.R")
hWnd <- hexStringToDecimalInteger(hWndString)
system32 <-
2007 Jun 11
0
biplot package II
Dear all,
I've been learning biplot (Gabriel, 1971) and some days ago I sent for
this list a procedural function with invitation for a collaborative package.
Jari Oksanen made some suggestions and I agree with all.
So, I reworked the function under the object-oriented programming
(OOP/S3). I think it is now a good frame for more resources.
Below it is the function and a small script to
2005 Oct 09
1
enter a survey design in survey2.9
Hi dears,
 
I expect that Mr Thomas Lumley will read this message.
I have data from a complexe stratified survey. The population is divide in 12 regions and a region consist to and urban area and rural one. there to region just with urbain area.
 
stratification variable is a combinaison of region and area type (urban/rural)
 
In rural area, subdivision are sample with probabilties proporionnal to
2005 Sep 28
1
boxplot and xlim confusion?
I have some code as shown below. Basically, I would like three
boxplots to be set next to each other with no ylabels on the two
"inner" plots, and I want the same x axis range on all three. However,
it seems like boxplot does not respect the xlim setting. I've tried
the various ways I thought would work (par, boxplot(...xlim=)) but
none of them seem to work. I then tried plot.window,
2002 Jun 25
1
Using SSH as "su"-substitute
Hello everybody!
I'd like to present a feature wish: using ssh as a substitue for su.
Of course, if I have a forwarding agent (or the correct key) I can simply do a
	ssh -l <other_user> localhost
but that's not really optimal - the environment gets lost as I'm newly logged 
in, agent forwarding has one more hop to traverse, the data is once more 
en/decrypted, ...
So I propose
2004 Sep 03
2
arima et graphique
bonjour, je rencontre quelques soucis au niveau de l'utilisation des 
fonctions arima.forecast/predict; en effet elles sont dites inconnues alors 
que j'ai bien install?? et charg?? le package "ts". Aussi, j'aimerai savoir 
comment visualiser le graphique des pr??visions avec arima et celui des 
donn??es brutes dans la m??me fen??tre.
Tout en vous souhaitant bonne r??ception
2010 Mar 11
1
console window always on top
In R on Windows (ver 7) I have somehow set the preferences for the R
console window to be always on top. I'm sure at the time I did this it
seemed like a good idea, but in practice it is not. Unfortunately, I
cannot remember where the setting is changed, and thus it is stuck
this way. Does anyone know how to modify this setting?
Thanks,
-Robert
Robert M. Flight, Ph.D.
Bioinformatics and