similar to: Graphics 'snapshots' in Linux?

Displaying 20 results from an estimated 10000 matches similar to: "Graphics 'snapshots' in Linux?"

2005 Jul 06
1
dyn.load in linux: missing libraries?
Hi, I've just about got myself transferred from windowsXP to Linux (Mepis 3.3.1-1). I've got R 2.1.1, emacs, and ess running from the debian repositories. Of course, there is a hitch. I have a bit of C code in one of my personal functions. I have, apparently without problem, been able to compile it using R CMD SHLIB, but when I try to dyn.load it I get the following error: >
2007 Jan 03
6
R grahics: Save as hangs computer
Hello list, I have encountered a problem trying to save graphs using the R-graphics menu: File|Save as. The menu suggests that files may be saved as either Metafile, Postscript, pdf, png, bmp, jpeg. When I specify any of those file formats a menu comes up requesting a file name. After providing a name R invariably hangs and has to be restarted. I am able to save files under the various
2000 Aug 17
1
Things I don't understand about the graphics interface
Using R-1.1.1 on RedHatLinux 6.2. I've made some progress, succeeded in outputting bitmap, jpeg, and png files. Yipee. I did them with this command: > dev2bitmap("whatever.bmp",res=300) > dev.print(png, file="myplot.png", width=480, height=480) > dev.print(jpeg, file="myplot.jpg", width=480, height=480) > dev.print(pictex,
2001 Dec 07
2
Latex Question
Here is how to print graphs for inclusion in Latex. First make sure you've got the graph you want. Do this by repeating and editing the command to make the graph, in the usual way. (Yes, I know Miktex is good, but it isn't as good as Emacs with ESS, although I admit that I could never configure Emacs properly on Windows - which was reason #23.5 for giving up Windows.) Second, say
2004 Jul 04
1
Embarrassingly naive question regarding graphics on Mac OS X
I am having trouble saving graphs. Using the Aqua interface (which is not my preferred interface), I have no problems plotting a graph, adding additional lines, points, references, etc., and then saving it to a file using, for example, the dev2bitmap command. I have found that, running R with Xemacs+ESS under X11 (which I prefer over Aqua), this is not possible. I can either send the graph to a
2009 Jan 29
2
fluxbox, ess and redrawing r windows
Hi, I'm running Lenny with Fluxbox, interacting with R via Emacs + ESS. An ongoing aggravation with this setup is trying to get R graphics windows redrawn. For example, I may have 8 or 10 R graphics windows open, and I switch between them using Alt-tab. The problem is, sometimes the windows remain blank. Sometimes I can get the display back by moving the window with the mouse, or switching
2009 May 04
1
ellipsis problem
Hi, I'm confused about the use of ellipsis in function arguments. I'm trying to write a wrapper for plot to automate the combination of plot() and points() calls for a data.frame. Some arguments seem to get passed through to the inner plot, while others cause an error: Error in eval(expr, envir, enclos) : ..1 used in an incorrect context, no ... to look in As a minimal example: tmp
2017 Jun 18
3
Problema con Histograma con porcentajes usando ggplot
Gracias. Alguna idea de que usar para calcular los porcentajes y almacenarlos. Se puede usar flat table? El 18/06/2017 4:50 p. m., "Carlos J. Gil Bellosta" <cgb en datanalytics.com> escribió: > Los porcentajes que obtienes con tu código son sobre todas las facetas, no > país a país. > > Calcula los porcentajes previamente a por país y representa esa columna en >
2017 Jun 18
2
Problema con Histograma con porcentajes usando ggplot
Estimados Soy un nuevo usario de R, y estoy usando como base de datos el European Social Survey, que tiene datos de 40,000 individuos, y alrededor de 23 países europeos. Lo que he seleccionado es la útima ola, el round 7, para el año 2014. He leido los datos, desde SPSS y aquí tienen la base de datos y que tipo de objetos se han generado, y tambíen la distribución por pais de la muestra. No he
2009 May 20
1
how to get remote ESS graphics to work?
Hi all, My graduate student is logging onto my macpro and running R through ESS aquamacs (with Mx ssh and then Mx ess-remote). Everything is working fine until we get to graphing. We are trying to give him the ability to look at graphics interactively. The ESS manual is not too helpful: "If you run X11 (See Section 13.3.2 [X11], page 68, X-windows) on both the local and remote machines
2006 Mar 05
2
Really dumb question
Just got dovecot running inside MEPIS 3.3.2 SOHO (debian). I am impressed. It works really well and I am planning to move my mail away from my Win server and access the mail from dovecot using imap. I have copied some folders from my existing Outlook mail system into the imap mail server without any problems....so here is the dumb question: where are the mail files/folders stored on the MEPIS
2004 Aug 09
5
AW: built-in Sweave-like documentation in R-2.x
> See the 'Writing R Extensions' manual, specifically > Creating R Packages -> Writing package vignettes thank you, i saw this entry. However, this entry is rather about how to include documents (in particular Sweave-based) into a package. But I have meant smth else. Let me explain in example. Today I use emacs as environment for my R-sessions. I am quite happy to use
2017 Jun 18
2
Problema con Histograma con porcentajes usando ggplot
#Simple table con frecuencias absolutas y crear relativas count =table(ess$stflife) percent = 100* (count)/sum(count) Carlos he creado a esto a nivel general en vez de usar prop.table. Según lo que dices o entiendo, debo de usar la función ddply para hacerlo a nivel de todos los paises, y entiendo que ddply (, c(""), debo de indicar los paises? Saludos 2017-06-18 17:37 GMT-05:00
2009 Oct 03
1
Graphics Device; locator function
Hi, haven't been here for a while, but everyone one was always so helpful I thought I would ask you another really basic question. I'm running R2.9.1 in Ubuntu8.04 on a netbook (maxed out on memory etc so I don't think that's a problem - wth it's a Dell Mini 9" with that lpia non-architecture you told me about). Anyway, some of the graphics functions/parameters are
2007 Dec 21
1
R appearance under linux
Dear R users, I have just moved to R2.6.1 under Opensuse linux 10.3. I used to work with R under XPpro. Is it "normal" to have a visual aspect of R under linux different ? I mean without a window with menus etc... What I do is just open a console window and type R then I just obtain a:?? >?? waiting for my input. No menu I can click to open for instance to go to the different
2017 Jun 19
2
Problema con Histograma con porcentajes usando ggplot
Creo que esto me da para DK, y luego veré como aplicar el barplot ess %>% filter(cntry %in% c("DK")) %>% count (stflife) %>% mutate (freq = (n /sum(n)*100))%>% print 2017-06-18 19:01 GMT-05:00 Antonio Rodriguez Andres < antoniorodriguezandres70 en gmail.com>: > He conseguido el total para un país, pero no me deja usar percent = > count() /sum(count),
2004 Sep 12
2
can't get the quartz window to the background
Dear List, I have switched from Linux to OS X, and I find the R interface there really nice. I am using Emacs+ESS, and the quartz device. My only problem is that 1. I can't move the quartz window, whenever I go above it I see a spinning rainbow circle (AFAIK that means "I am busy" or "can't touch me" in OS X) 2. Once something gets in front of it, I cannot
2015 Aug 14
2
Clunky Xorg with latest 6.7 upgrade?
On Thu, 2015-08-13 at 23:51 -0700, Gordon Messmer wrote: > On 08/13/2015 02:44 PM, Bill Maltby (C4B) wrote: > > Top shows > > PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND > > 32160 root 20 0 259m 104m 22m R 76.5 1.3 559:07.79 Xorg > > 23391 hardtolo 20 0 6293m 215m 26m S 16.9 2.7 21:49.86 java > > Well, what's process
2009 Apr 04
4
have wind installed on desktop and laptop with mepis lenny
I have installed wine on my mepis 8.0 desktop and laptop. Wine runs Netscaper Navigator on the desktop but not on the laptop. Why??? (newbie asking). I'm on the desktop now asking the question---
2007 Dec 20
5
[Bug 13750] New: Repetitively Taking Screenshots Causes the X Server to Hang
http://bugs.freedesktop.org/show_bug.cgi?id=13750 Summary: Repetitively Taking Screenshots Causes the X Server to Hang Product: xorg Version: 7.2 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nVidia (open) AssignedTo: aplattner