similar to: Could anyone answer for the following question

Displaying 20 results from an estimated 6000 matches similar to: "Could anyone answer for the following question"

2004 May 09
2
windows(record=T) loses last plot (PR#3663)
The audit trail indicates that PR#3663 is not reproducible and/or fixed, but I believe windows(record=T) is still not working as documented: windows(record=T) for(i in 1:5) plot(0, 0, cex=4, pch=as.character(i)) After cycling through the plots with PgUp and PgDn, the user finds out that plot 5 is lost. Indeed, .SavedPlots reports that only 4 plots were saved. I'm running the example in
2000 Jan 28
1
Activating Graphics History
I'm having trouble finding documentation on how to activate the "record graphics history" option via a command line (as opposed to having to use the menu). I would like to store a series of graphics. The readme says: `The History menu allows the recording of plots. When plots have been recorded they can be reviewed by PgUp and PgDn, saved and replaced. Recording can be turned
2005 Mar 30
4
how i can get input from "user input"
Hello, Could you please tell me how i can get an input from the user in R? C-Ming Mar 29, 2005 --------------------------------- [[alternative HTML version deleted]]
2005 Jan 25
4
more question
Hello, thank you very much for your help in last email. it is very helpful. right now, i have more questions about my project, 1. solve can i remove the NA from a vectors: for exmample, if my vector is: v <- (NA, 1, 2, 3, 4, 5) how can I remove the NA from vector v 2. how I can get input from the user? 3. can I read more than one data files in one program? and how i can write something
2005 Apr 13
1
how to separate a string
hello, i wonder how is string represent in R. if i have a string s= "hello", how can i refer to first character in the string s? also if i have s1 = "hello.1", s2 = "ok.1", how can i separate the s1 into "hello" "1" and s2 into "ok" and "1"? I have tried to use the substring function, but i don't where i can get the index
2005 Jul 29
5
R: graphics devices
a simple question how does one produce plots on two different graphics devices? / allan
2005 Jan 26
3
plot function
Hello, how can use change the plot function to change the range of axises. I want my graph from a certain range [a, b], instead of from the min to max of of datas? if i want draw a line instead of dots, should i use both plot and lines function. for example: plot(x, y); lines(x, y); things seem not working if i only use lines(x, y). Thank you so much. Cuichang Zhao Jan 25, 2005
2006 Jan 15
0
Firefox slide show with embedded SVG
Now that T. Jake Luciani has created a working RSvgDevice package (with one function called devSVG), we can produce SVG output from ordinary plots, not necessarily just those made with grid. Since Firefox and Mozilla support SVG (in recent versions), this might be a good way to put figures in web pages in a way that can be easily scaled, and even (with tweaking) manipulated with scripts.
2011 Mar 26
2
Recommend a pdf reader?
Hello!!! evince is a really good ubuntu pdf reader, but for some tasks I would like to use mouse button 1 for panning, because I use a netbook touchpad. Currently panning is only available using mouse button 3, which I would need to use a separate mouse for. (I've been unable to switch mouse button 1 and 3 around for evince... but that's off topic... ) I've tried many different
2006 May 23
1
after identify labels dissapear XP
Greetings: Using 'identify' to label points on a plot works just fine. However, when saving under 'metafile' or using the clipboard the labels dissapear. I believe it's an SDI issue. I am running last R with last Tinn-r under XP up to date. Anything I can do besides going back to MDI :-)? Thanks, Mihai Nica, ABD Jackson State University ITT Tech Instructor 170 East Griffith
2007 Nov 27
2
R graph window
Dear all, I am using R 2.6.0 on Windows XP. I am wondering if R can show multiple graph at the same graph window with different tabs at the bottom of the window, like in S-plus. Does anybody have experience on this? Thank you. Cathy --------------------------------- [[alternative HTML version deleted]]
2008 Oct 06
2
Graphics window BUG
I thought this problem would be resolved when I switched to R version 2.7.0 (for Windows), but no - anytime I plot something that produces more than one page of graphics, the graphics window starts by showing the first page, until such time as I hit enter to show me the next page, at which time it speeds through every consecutive page and freezes on the last one. At this point the last page is
2000 Jun 23
1
Re: undocumented behaviour of recordPlot (PR#578)
On Thu, Jun 22, 2000 at 05:01:32PM +0200, p.dalgaard@biostat.ku.dk wrote: > I think this is pretty certainly a bug, so I'm cc'ing this to r-bugs. > > -p > > Kaspar Pflugshaupt <pflugshaupt@geobot.umnw.ethz.ch> writes: > > As the documentation states, when I generate a plot and save it with > > recordPlot, I can regenerate it by printing the variable:
2000 Jun 23
1
Re: undocumented behaviour of recordPlot (PR#578)
On Thu, Jun 22, 2000 at 05:01:32PM +0200, p.dalgaard@biostat.ku.dk wrote: > I think this is pretty certainly a bug, so I'm cc'ing this to r-bugs. > > -p > > Kaspar Pflugshaupt <pflugshaupt@geobot.umnw.ethz.ch> writes: > > As the documentation states, when I generate a plot and save it with > > recordPlot, I can regenerate it by printing the variable:
2005 Apr 16
2
String in data frame
hello, how can take the string in the data frame. right now i have a table that create as a data frame and stored in the file called "data.xls" and now i want to read data frame as a table in my another r program, i used the following command: the first column of the data frame is just one number called "num", but the second one a list of string, called "name". d
2005 Jan 26
2
modular in R
hello, i wonder what command should i used in R to do the modular. right now i have a vector v <- c(3, 4, 5, 6), but i have tried v%2 or v mod 2 or mod(v, 2) or modular(v, 2), and none of these works. Also, how can i find more function command online, i have to search in the mailing list questions, but it is not enough, is that a better website i can search more about R online. Thank you
2007 Jun 07
2
Display Multiple page lattice plots
Gudday, I am generating a series of lattice contourplots that are conditioned on a variable (Year) that has 27 different levels. If I try and put them all on one plot, it ends up pretty messy and you can't really read anything, so instead I have set the layout to 3x3, thus generating three pages of nine plots each. The problem is that I can't display all these on screen at once, because
2005 Feb 11
2
table in R
Hello, I want to build some tables in my project using R, does R have some tables form that I can use? if i use the internal R table, how can initial a table before I use it? I want to my tables to have some columns, for example: (trial, x, y, goal) I want to put these columns into my tables, for i want to put data into each entry one by one. I have no idea about how big the table would be, so
2003 Jun 23
3
?plot problem
R1.7.0, Win2k: When I use plot( ) on a groupedData object, if I have 165 subjects I'm supposed to be able to use plot(..., layout = c(5,3,11)) to get all 165 on 11 separate sheets. The graphics window is only displaying the first 10. If I use plot(..., layout = c(5,3,12)) I get the appropriate 11 sheets. Furthermore, yesterday I noticed that when using plot( <linear model object> )
2013 Apr 01
1
Console display "buffer size"
Greetings All. This is a somewhat generic query (I'm really asking on behalf of a friend who uses R on Windows, whereas I'm on Linux, but the same phenomenon appears on both). Say one has a largish dataframe -- call it "G" -- which in the case under discussion has 592 rows and 41 columns. The intention is to display the data by simply entering its name (G) as command. Say the