Displaying 20 results from an estimated 1000 matches similar to: "Help with graphs in A4 size"
2013 Feb 26
15
Ayuda con dev.copy2pdf - Ejemplo reproducible
Buenos días:
Sigo cabezudeando con el tema de los gráficos; a ver si a alguien se le ocurre alguna idea...
Supongamos este código:
library(plotrix)
graphics.off()
windows(width=8.27, height=11.69)
plot(3:10)
#plot(3:10, main="Axis break test")
par(xpd=TRUE)
text(4, 11,"Axis break test")
axis.break()
axis.break(2,2.9,style="zigzag")
mtext("Texto
2017 Jun 26
3
Model studies in one analysis using treatment as a five level moderator in a meta-regression
Hello,
I am medical student, writing a meta-analysis on complication and reoperation rates after the five most common treatments of distal radius fractures. I have been busy with the statistics for months by my self, but find it quite hard since our classes were very basic. Now I want to compare the treatment modalities to see if there are significant differences. Using R I was able to
2017 Jun 26
0
Model studies in one analysis using treatment as a five level moderator in a meta-regression
hi Jay,
Consult a local statistician. Statistics is not you think is (namely
simple computations, R and probably plotting..).
regards,
vito
Jay Zola <jayjay.1988 at hotmail.nl> ha scritto:
> Hello,
>
>
> I am medical student, writing a meta-analysis on complication and
> reoperation rates after the five most common treatments of distal
> radius fractures. I have
2011 Jul 28
3
bug in dev.copy2pdf output?
Hi,
Am using R 2.13.1 on Linux (Fedora). Is anybody else having problems with
dev.copy2pdf xyplot output with the pch=1 (open circle) symbol? The
symbols come out as "q" in the PDF. dev.copy2eps produces the correct
results as does cairo_pdf. Other symbols produced with dev.copy2pdf seem
ok.
Thanks,
Selwyn
2012 Feb 06
1
Multi-page PDF using dev.copy2pdf(filename, onefile=TRUE)?
Hi all. I want to generate a sequence of n plots and save them into a single PDF file, one plot per page. From the R docs and other sources I gather the basic way to do this is save plot 1 into a file then append the 2:n plots to the same file.
This code shows my basic approach, but for some reason only the last plot is saved into the pdf. I've tried different variations (e.g. using onefile
2013 Feb 13
4
Equivalente a paper="a4", pero en pantalla gráfica
Buenas tardes:
Quería lograr el efecto "expansivo" que se consigue con la opción paper="a4" de la función pdf, pero sin volcar en pdf; es decir, yo quiero enviar mi gráfico (luego definiré sus propiedades) a la salida gráfica (RGui) de modo que quede con verticalidad, como en un A4, y luego el usuario final es libre de guardar en pdf o no, con el propio RGui.
Ahora voy a
2017 Jun 26
1
Model studies in one analysis using treatment as a five level moderator in a meta-regression
Dear Vito,
Thank you for your reply. I tried to contact the statistics departement numerous times, but did not receive any reply. That is why I started to look on the internet for help.
Yours sincerely,
Jay
Verstuurd vanaf mijn iPhone
> Op 26 jun. 2017 om 22:05 heeft Vito Michele Rosario Muggeo <vito.muggeo at unipa.it> het volgende geschreven:
>
> hi Jay,
> Consult a local
2006 Apr 24
1
Just a couple questions on how I should go about
> I need a simple blog with categories and comments and an archive. I want a
> nice posting system, but don''t want it in HTML. Is there something I can add
> or make, kind of like BBCODE?
http://whytheluckystiff.net/ruby/redcloth/
http://wiki.rubyonrails.org/rails/pages/RedCloth
> I pretty much know what else I have to do, but there is one more thing. A
> client section.
2006 Apr 23
3
Just a couple questions on how I should go about this.
I''m working on my personal site. The design is complete and I want to
integrate some rails into it. I''ve done a few small things before, but
compared to them this is big.
I need a simple blog with categories and comments and an archive. I want a
nice posting system, but don''t want it in HTML. Is there something I can add
or make, kind of like BBCODE?
I pretty much know
2013 Mar 30
2
Problema con gráficos
Hola,
Construyo un gráfico utilizando layout y manejando convenientemente los mar y oma para luego ubicar los plot y las líneas de texto. El caso es que si ejecuto ese mismo código en un netbook (indicando windows(width=8.27, height=11.69) igual que en el pc), me da el típico error de plot.new : márgenes de figura muy grandes. ¿Cómo puedo hacer para solucionarlo?. ¿O no tiene solución?.
Gracias.
2012 Dec 12
1
Multiple palettes on single plot don't get rendered when I use dev.copy2pdf
Hi All,
I'm having trouble with the colors on my screen getting translated to
the colors in the outputted .pdf document.
Here is a caricature of my problem:
par(mfrow=c(1,1))
x1 = rnorm(1000)
x2 = rnorm(1000)+10
y1 = rnorm(1000)+10
y2 = rnorm(1000)+10
palette(rainbow(6))
plot(x=x1,y=y1,col=y1,xlim=c(-10,20))
palette(heat.colors(6))
points(x=x2,y=y2,col=y2)
dev.copy2pdf(file =
2002 Jun 21
1
textConnection appears to be slow
I was trying to read in a file and delete lines that did not have the
correct
number of fields on them. I was reading the file as one character vector
per line
using 'scan' with sep='\n'. I was then using 'count.fields' with
'textConnection' to the object I just read in.
I thought at first the system was locked up, but further testing showed
that the
2013 Apr 07
5
Duda con width y height. Resolución de pantalla
Buenas tardes:
Por favor, ¿alguien me puede explicar este comportamiento?.
Lanzo este código enun equipo con una pantalla de 21'''' y el resultado es correcto, tanto en la ventana gráfica como al guardar en pdf:
quartz(title="Ventada de prueba", width=8.27, height=11.69, dpi=85)
plot(1:10)
Sin embargo, lanzado en un equipo con pantalla de 15'''', la
2013 Apr 06
1
Graphic window dimensions
Dear all,
I have a doubt: if I run windows(width=8.27,
height=11.69), the size of an A4 paper, does it work correctly in all
screens? Or does it depend on the inches of my screen?.
I ask
you about this question because I need to make the user see a graph in
the graph window and he must be able to save the graph as a pdf (using
the Rgui menu) and the result must be a pdf with A4 size.
2009 Jan 28
2
Saving plot into file without showing it
Hi List,
My apologies in advance if question is simplistic, I am quite new to R graphics capabilities and I could not find anything in past threads...
I use R 2.8.1 under Mac OS X, but I would preferrably have a cross platform answer as I use also R under Windows
I produce plots using R & save them in a file
e.g. below:
y <- rnorm(1000)
x <- rnorm(1000)
plot(x,y)
2003 Jan 10
1
plot() and lines() multivariate problem
Dear list
I'm trying to solve the following problem since 2 days with no success.
Could someone help a newbie, please ?
I have a dependant variable which is diameter of shell, and two factors
which are level on the beach (3 levels 'B', 'E' and 'H') and a hydrodynamics
indice (3 levels 1, 2 and 3)
To study diameter variations according to these factors, I may use
2013 Feb 21
4
Quartz
Hola,
Por favor, alguien que use MacOS, ¿podría hacerme un favor?: se trata de lanzar este código que indico a continuación:
quartz(title="Ventada de prueba", width=8.27, height=11.69, dpi=85)
plot(1:10)
Observación: me refiero a lanzarlo desde el Rgui (no desde RStudio).
Luego se trataría de guardar como pdf desde el menú, y enviarme ese pdf. Necesito comprobar que queda en
2006 Jul 16
1
break axis using plotrix
Dear all,
I am trying to plot some data with differing range in y-values with
type="b", adding error bars and break the y-axis into two parts, one
lower part from 12 to 20, and one upper part from 34 to 40.
I have tried to follow the basic ideas from the script provided here by
Jim Lemon:
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/56487.html
My attempt looks like this:
2011 Jan 15
1
Truetype and Opentype font in pdf device
Deal all,
I want to know if truetype or opentype fonts are available in pdf
device (i.e., pdf() or dev.copy2pdf()), and if so, how to do it?
Now I can do as followings:
1. convert ttf to afm using ttf2afm, e.g.: $ ttf2afm Impact.ttf > Impact.afm
2. put the afm file in $R_HOME/library/grDevices/afm
3. register a new type1 font: pdfFonts(Impact=Type1Font("Impact",
2013 Feb 20
0
Problems with line types in plots saved as PDF files
Ian
No differences with Adobe X with the following
windows(6,6)
#pdf(file = "TestPlot.pdf", 6, 6)
#{
plot(b, l, type = "l", ylim = c(y.min, y.max), lwd = 2, xlab =
expression(beta), ylab = "", col = "green", yaxt = "n", xaxt = "n")
points(b, p, type = "l", lty = "dotted", lwd = 2, col = "red")
points(b,