search for: graph2

Displaying 13 results from an estimated 13 matches for "graph2".

Did you mean: graph
2003 May 21
2
Graphics device history recording problem (Previous and Next utilities)
I use 1.7.0 version under Windows XP. Problem: When graphics device history recording function turned on, suppose I source a file containing lines: plot(graph1) plot(graph2) I see the graph2 in the graphic device, assuming graph2 is the last plot in the file. Now using "Previous" under history menu, I get graph1 as expected. But after that, using "Next" does not show graph2. Is this a normal behavior? If so how do you get back to graph2? I have ob...
2010 Nov 19
1
How to print "graph1.png" "graph2.png" "graph3.png" ... ?
Dear All, I want to print out "graph1.png" "graph2.png" "graph3.png" ... How can I print it out? Thank you,
2013 Jun 19
2
knitr without R studio
...nction(before, options, envir) { if (before) par(bg = options$fig.bg) }) ``` ```{r graphs,fig.keep=?last?} for (x in 1:10) plot(rnorm(100), col = x) ``` ```{r graph1} plot(rnorm(500), type="lines", main="Graph1") ``` Top of the Page <#top> ```{r graph2} plot(rpois(500,3), type="lines", main="Graph2") ``` Top of the Page <#top> </body> </html> ) But R keep sending me error message, any clue? Regards, Alex -- View this message in context: http://r.789695.n4.nabble.com/knitr-without-R-studio-...
2008 Jan 30
2
Concatenate xyplots
Dear R-community, I created 5 different xyplots and graphed all of them with the print command on one page (e.g. print(graph1, split=c(1,1,1,5), more = T) ... print(graph5, split=c(1,5,1,5), more =T) Using the above commands separates each graph by a white space. However, since the graphs do share the same x-axis, I was wondering if there is a way to concatenate graph1 through 5 so
2011 Jul 12
4
qplot and for loops
...ote that I can easily make any of the four graphs by i=1 or i=2, etc. qplot(x<-mydata[,i]) I just need to figure out how to make it loop correctly. The ultimate goal would also be to save these graphs to my computer with automatically generated file names. Something like test graph1.png, test graph2.png, etc. Thanks For The Help! -- View this message in context: http://r.789695.n4.nabble.com/qplot-and-for-loops-tp3663292p3663292.html Sent from the R help mailing list archive at Nabble.com.
2009 Aug 25
1
Clogit or LRM?
...applied to my conditional logit score shows an interesting result. The line is almost perfectly parallel to the "ideal" mark on the graph, but is offset by a significant amount. My first thought is that this indicates an error in my calculation somewhere. Please see attachment "graph2.pdf" Below is the two step process that I used for the conditional logit. -------------------------------------------------- 1) First a standard logistic regression is calculated on two variables: model <- lrm(label ~ val1 + val2, data = traindata ) This gives me the following results:...
2009 Apr 06
1
Maintain proportions while reducing graphic output size
...s, and I am trying to change my whole script to produce 4x4 images with the same proportions. I tried specifying parameters within each png(), but it reduced the size of the file without refitting the contents so the graph title went off the margin. This is an example of the code I used: png("graph2.png",height=432, width=432, units="px", res=96) What would be the best way to generate 4x4, proportional graphs? Thanks! [[alternative HTML version deleted]]
2007 Jun 08
2
wrapping lattice xyplot
This is an expanded version of the question I tried to ask last night - I thought I had it this morning, but it's still not working and I just do not understand what is going wrong. What I am trying to do is write a wrapper for lattice xyplot() that passes a whole bunch of its secondary arguments, so that I can produce similarly formatted graphs for several different data sets. This is what
2004 Apr 03
2
a fix for rotated PDF graphs
...ated, so I don't think it's an actual acroread bug. I am using R 1.8.1. The solution is to "distill" the files using eps2eps, part of ghostscript on my Debian box. Here is an example Makefile I use for this: ---- cut here ---- EPS2EPS=eps2eps EPSTOPDF=epstopdf all: graph1.pdf graph2.pdf %.pdf: %.raweps $(EPS2EPS) $< $*.eps $(EPSTOPDF) $*.eps ---- cut here ---- So I have a fix now, and it works. But I still think that either the postscript() function in R, or both acroread and gs are broken. I know no ps/pdf, so I can't decide which, but in the long r...
2011 Jun 26
1
changing graphs in qqplot2
...(x = YEAR, y = TOTAL, colour = TREATMENT)) + > geom_point() + facet_wrap(~NITROGEN) #this is the treatment A, but should only be displayed in the right graph (low). p + geom_abline(intercept = 81.476,slope=47.2667, colour = "red", size = 1) http://r.789695.n4.nabble.com/file/n3626510/graph2.gif b. Another option I?ve tried is to specify the model in the stat_smooth and geom_smooth commandsm=, but in both cases I get an error message. > p + stat_smooth(method = "lm", formula = TOTAL ~ TREATMENT + YEAR + > COUNTRY + TREATMENT:YEAR)+ + geom_point() Error in model.fra...
2009 Nov 06
4
Guardar gr=?US-ASCII?Q?=E1?=ficos en formato para powerpoint
Hola, Por favor, necesito guardar en un mismo documento tres gráficos y que éste se pueda abrir en powerpoint para poder insertar las tres gráficas allí. Con jpeg() sólo se me guarda la última gráfica. ¿Alguien me puede ayudar?. Muchas gracias
2004 Feb 03
3
R: plotting multiple functions
Hi all Another simple question. I would like to plot three graphs one the same plot with different colours. Say red, blue and black. Here are the functions. r1<-1+5*cos(2*pi*seq(1:100)/20)+rnorm(100) r2<-1+7*sin(2*pi*seq(1:100)/20)+rnorm(100) r3<-1+7*sin(2*pi*seq(1:100)/20)+5*cos(2*pi*seq(1:100)/20)+rnorm(100) Regards Allan
2007 Feb 22
3
several Filled.contour plots on the same device...
hello - a question about filled.contour plots, for which i haven't found a response in previous posts - sorry if already treated. i'd like to draw several filled.contour plots (that is, maps) on the same device (a postscript file, actually). I know about layout(matrix) , split.screen or par(mfrow) : it works well for simple plots, but with filled.contour plots, i get several pages