Displaying 20 results from an estimated 6000 matches similar to: "plotting density(rnorm(1000)) crashed once (PR#1837)"
2002 Jul 26
1
R 1.5.1 (Windows) crashes on plotting density(rnorm(1000)) (PR#1837)
I am experiencing a reproducible crash from the following statement:
plot(density(rnorm(1000)))
on R 1.5.1 on Windows 2000.
This is a dual-processor machine with 512Mb of RAM. Please advise if
further details of hardware/OS are needed.
If rgui.exe is in use, the crash occurs before the plot can be
displayed. If rterm.exe is in use, the plot appears, then the error (and
crash).
A screen
2005 Aug 23
0
For2R - Interface from Fortran to R
We announce the availability of the Fortran 95 module "For2R", which
makes it easy to write complicated R data structures (i.e., lists of
lists, matrices, dataframes, ...) from Fortran programs. By a series of
subroutine calls, program outputs can be written to a file readable by R
with a single "dget" function call. This facilitates automated graphics
generation and other
2005 Aug 23
0
For2R - Interface from Fortran to R
We announce the availability of the Fortran 95 module "For2R", which
makes it easy to write complicated R data structures (i.e., lists of
lists, matrices, dataframes, ...) from Fortran programs. By a series of
subroutine calls, program outputs can be written to a file readable by R
with a single "dget" function call. This facilitates automated graphics
generation and other
2002 Dec 23
1
Plot scales
I remember reading somewhere that locations on plots (in my case, arguments
x and y for legend()) can be specified in several scales besides the usual
data scale. I would like to set x and y as proportions of total plot size
or something similar. Can anyone steer me to documentation on how to do it?
--
Michael Prager, Ph.D. <Mike.Prager at noaa.gov>
NOAA Center for
2002 Aug 08
1
PR #1833 Clarification (PR#1890)
This is (correctly) filed under "non-reproducible."
The corresponding notes say "solved by re-installing Windows (private
comm)." I would like to clarify that this was solved by re-installing the
patch known as "Windows 2000 Service Pack 2," not by reinstalling Windows
itself. Perhaps my original message was not clear.
I point this out because installing the
2004 Jul 15
3
More on global environment
To follow up on my previous question, suppose a user R session wants to
unload one workspace and load another within an R session. Is the
following the correct sequence?
1. save.image() to save the current workspace as .Rdata in the current
working directory.
2. rm(list=ls()) to remove everything from the workspace.
3. setcwd("xxx") to set the new working directory.
4.
2005 Jun 28
0
JGR font rendering on Windows
JGR users on Windows may be interested that Sun has released a preview
of its latest Java development kit and runtime engine at
http://www.java.net/download/jdk6/binaries/
This removes the main problem I have had with JGR and other Java
programs on Windows: poor font rendering. On Windows XP with an LCD
display, the improvement is striking, as this uses Windows native font
smoothing
2005 Sep 25
0
Tip: Working directory in titlebar
I hope others may find this useful. I use R in many different
directories. By adding the following line to the .Rprofile file:
utils:::setWindowTitle(paste("-",getwd()))
the titlebar of each R instance shows the directory from which it was
started. I have tested this with rterm.exe and rgui.exe under Windows
and with RECENT versions of R only.
-----
For changing directories
2003 May 30
3
Time for Usenet R Group?
I probably shouldn't suggest this, because I can't volunteer to implement
it. However, I bring it up in the hopes that if (1) others agree and (2)
the R core group think it a good idea that a suitable volunteer will come
forward.
I am finding that the flood of R email messages is becoming difficult to
deal with, even using filters, etc., in my email client. Would we be
better
2004 Jul 15
4
Where is global environment?
I am using R 1.9.1 under Windows XP Professional.
Is there any R function that returns the filesystem path from which the
global environment (workspace) was loaded (and to which it will, by
default, be saved)? This seems identical with the current directory, so in
any given session it is not too difficult to find out by other means. But
for several reasons I would like to find this out from
2002 Jul 16
1
Minor GUI Issues
Some minor request for the R on Windows (2000) GUI version. I'm using
1.5.1 with the SDI interface.
(1) When minimized, the main R window and the graphics window show as two
copies of the same icon. That makes it less convenient to switch among
tasks in Windows, as I often select the wrong one. Could they have
different icons in the future, please?
(2) I use a fixed-width Type 1 font
2002 Jul 16
1
Minor GUI Issues
Some minor request for the R on Windows (2000) GUI version. I'm using
1.5.1 with the SDI interface.
(1) When minimized, the main R window and the graphics window show as two
copies of the same icon. That makes it less convenient to switch among
tasks in Windows, as I often select the wrong one. Could they have
different icons in the future, please?
(2) I use a fixed-width Type 1 font
2003 Oct 18
2
Oceanographic lattice plots?
R 1.8.0 on Windows XP Professional. A huge THANK YOU to the R Team for
this marvelous software.
I am making lattice plots of oceanographic data. The usual layout does not
conform to plotting conventions that marine scientists use when depth is
the independent variable. Under those conventions, plots are made with the
origin at the upper left, depth on the vertical axis (increasing as it
2003 Sep 04
0
SUMMARY: Comparison of SAS & R/Splus
My thanks to Drs. Armstrong, Bates, Harrell, Liaw, Lumley,
Prager, Schwartz, and Mr. Wang for their replies. I have
pasted my original message and their replies below.
After viewing http://www.itl.nist.gov/div898/strd/ as suggested
by Dr. Schwartz, it occurred to me that it might be educational
to search for some data repositories on google. I was able to find
some,though I'm sure many of
2005 Feb 08
4
Renaming columns in data.frame, inserting/removing columns from data.frame
Hello,
I'm hoping that there is an easier way to rename columns in a data frame
other than by using the names() assignment, which requires you to type in
all the column names at once for a data.frame, in the case that I simply
want to rename a single column in a data frame.
Also, is there an easy way to move columns in a data frame around relative
to the other columns?
Thanks in
2006 Feb 07
1
Reading in FORTRAN data using R
Hi There:
I was wondering if there is a way to read FORTRAN list data (similar to
IDL's readf function). I often use FORTRAN for most of my number
crunching, and use something like IDL to visualize and perform
statistical analysis on that data. Since the each file is rather large
(>100 Mb), formatting the output into columns or tables is impractical,
hence the "list"
2006 Feb 13
2
Plotting contour & filled.contour in one graph
Dear All,
I have a question on overlaying a filled.contour (e.g. on soil properties data) and contour (by elevation) in one graph. Both have the same z matrix dimension. I'm able to overlay both graph, but the plots dimension did not overlap well on the same plots. How can I have both filled.contour and contour on the same graph? The commands that I have written are as follows:
2005 Dec 14
2
Problem with dir.create (R2.2.0 Windows XP 2002 SP 2)
I've run into a problem with dir.create on R2.2.0 Windows XP 2002 SP 2.
setwd("d:/")
print(dir.create("d:\\otis-sim\\rdata", recursive=T))
print(dir.create("d:\\otis-sim\\", recursive=T))
Both return false and fail to create the directories.
setwd("c:/")
print(dir.create("d:\\otis-sim\\rdata", recursive=T))
Returns true and succesfully
2006 Mar 10
2
2nd R console?
hello all, i'm forwarding this question for a colleague.
"Is it possible to open a 2nd R Console?"
regards,
mark+
--
mark garey
ucsf
department of epidemiology and biostatistics
division of biostatistics
185 berry street, suite 5700
san francisco, ca. 94107-1739
415.514.8147
2004 Jan 09
2
r: fortran help
Hi all
I would like to know if anybody knows of either a good book or web site
that explains one how to use Fortran. I would like to call some of the
Fortran subroutines but before I can do that I first want to learn how
to code in Fortran.
Regards
Allan