Displaying 20 results from an estimated 40000 matches similar to: "Warning message if the plot statement breaks into 2 lines"
2003 May 29
3
Odd behavior of strptime
The example from the help page for strptime has the following oddity:
> dates <- c("02/27/92", "02/27/92", "01/14/92",
+ "02/28/92", "02/01/92")
> times <- c("23:03:20", "22:29:56", "01:03:30",
+ "18:21:03", "16:56:26")
> x <-
2004 Nov 19
4
3d Map with bars
Apologies in advance for the question. I am trying to draw a map of the US
as a surface plot so that I would be able to drop bars on the different
states (something like Uwe Ligges' scatterplot3d example 4). I am not sure
where to start looking for such a beast. If anyone has any pointers,
ideas, I will be grateful.
TIA,
Partha
2004 Jun 25
1
Memory.limit
I am playing with memory limits and trying to understand how R allocates
and increases available memory.
Here is what I have:
> memory.limit()
[1] 536068096
> memory.limit(size = memory.limit()*2)
Error in memory.size(size) : cannot decrease memory limit
> memory.limit(size = 1024^3)
Error in memory.size(size) : cannot decrease memory limit
> memory.limit(size = 1073741824)
Error in
2003 Nov 14
5
A suggestion regarding multiple replies
Please don't take this the wrong way. There are a lot of extremely helpful
people who subscribe to r-help.
I was wondering if it is time to adopt a strategy a-la Splus help whereby
people reply to the author and the author summarizes all the replies?
Just a thought and have a good weekend.
Partha
2000 Mar 08
3
Error loading ctest
Has anyone noticed this behavior:
> library(ctest)
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library "J:
\STATS\RW1000/library/ctest/libs/ctest.dll":
LoadLibrary failure
> library(ctest)
> version
_
platform Windows
arch x86
os Win32
system x86, Win32
status
major 1
minor 0.0
year 2000
month
2003 Apr 01
1
Bug in Plot.table?
While plotting a table using plot(table), I am not able to suppress the
axes with axes = FALSE. Am I missing something or is it a bug?
For example:
> x <- c(rep(0, 7), rep(1, 4), rep(5, 3), rep(6, 4), rep(8, 10))
> table(x)
> plot(table(x), axes = FALSE) #does not suppress the
axes
> plot(table(x), frame.plot= FALSE, axes = FASLE) #deliberate spelling
2007 Apr 23
2
plot.xy() with type="s" and huge data (PR#9629)
The following code snippet crashes R (under Windows and Linux) for both
R-2.4.1 and R-2.5.0 RC as of yesterday:
set.seed(1)
H <- rnorm(400000)
temp <- rnorm(400000)
plot(H, temp, type='s')
# (no, it was not my idea to do something like that!)
I *guess* it is some overflow in plot.xy() which calls
.Internal(plot.xy(xy, type, pch, lty, col, bg, cex, lwd, ...))
but
2009 Apr 24
3
Text Contrast in a Plot
Hi List,
I would appreciate any suggestion on how can I make a text I’ve inserted in
a plot show some contrast? With this I mean that I have a white text on a
plot and I would like to make a tiny border around it in black, so even
being small sized and the entire graphic being small in the text page I’ll
insert it. It will be visible.
Well I tried inserting a box() function inside the text()
2001 Sep 27
4
using the pfe editor with R 1.1.3 under windows 2000
I am in the process of setting up R1.3.1 on a new computer running windows
2000. I am having problems running the PFE text editor simultaneously
within R for editing functions and outside R for editing
ordinary text files. The PFE editor behaves as I expected, if it is opened
in R AND but no other PFE window is open outside R. Similarly, it also
works fine if I am editing a text file outside
2000 Mar 22
4
R-release dynamic load problem on HPUX10.20
Hello,
I just pulled the patched release:
R-release Version 1.0.0 Patched (March 19, 2000), on HPUX10.2
I am having dynamic library load problems. I configured with:
./configure --prefix=/home/absd00t/local --with-readline --with-x
After changing etc/Makeconf to take -lblas out of libs (the blas
library provided by the system is not a shared library), system was
built without any interruptions.
2006 Oct 21
1
plot.POSIXct plot.POSIXlt
Hi,
Just to signal that when I want to plot POSIXct variable on x using
format within plot(), I get what I want on the plot but with a number of
warnings:
> plot(y~x,format="%y-%m")
Warning messages:
1: "format" is not a graphical parameter in: plot.window(xlim, ylim,
log, asp, ...)
2: "format" is not a graphical parameter in: plot.xy(xy, type, pch, lty,
2002 Nov 22
4
Small change to plot.xy
Hi everyone,
Is there any reason why we should not automatically coerce a factor
supplied as an argument to col in a plotting function? The following
modification (to R-1.6.1) seems pretty harmless
> plot.xy
function (xy, type, pch = 1, lty = "solid", col = par("fg"),
bg = NA, cex = 1, ...)
{
if (is.factor(col))
col <- codes(col)
2010 May 13
1
ESP Ghostscrip ...
Hello All:
Could anybody tell me please what is the meaning of this error message:
ESP Ghostscript 815.02: Unrecoverable error, exit code 1
Error in plot.xy(xy, type, ...) : ignoring SIGPIPE signal
Calls: plot -> plot.default -> plot.xy
Execution halted
My code has to go to 18 loops for three times and in each loop it has to
read a file which is 100-300 Megs. It always crashes at loop 14
2012 Dec 29
1
bug in plot.ts?
Dear all,
I think I have found a buglet in plot.ts
plot.ts(x=1,type="n") # correct: does not show the plot
plot.ts(x=1,y=1,type="n") # not correct: does show the plot
I did not investigate the problem in depth but it could be related to
the switch xy.labels, in fact
plot.ts(x=1,y=1,type="n",xy.labels=TRUE) # does show the plot
2003 Apr 17
18
Validation of R
Hi All
I am really very interested in starting to use R within our company. I
particularly like the open source nature of the product. My company is a
medical research company which is part of the University of London.
We conduct contract virology research for large pharma companies. My
question is how do we validate this software? I wonder if anyone else
has had the problem and might be able to
2000 Nov 08
4
How to plot error bars
I'm a newcomer to R. I can't seem to find any documentation how to add
error bars to points in scatter plots. I guess I could plot the points,
then compute and plot line segments in the X and/or Y directions to
represent the errors?
- Mike
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2001 Aug 22
3
X11 protocol errors after all x11 devices are closed (PR#1065)
> x11()
> dev.off()
null device
1
> x11()
> plot.new()
Warning messages:
1: X11 protocol error: BadAccess (attempt to access private resource denied)
2: X11 protocol error: BadAccess (attempt to access private resource denied)
This only happens if all x11 devices are shut down, so the X11 connection
is restarted. We had problems with this when the event handlers
were
2005 Nov 21
1
Howto? plot legend with no line behind the points
Hi R-help,
We are using R 2.2 on Win XP and have a detail question on how the
legend can be optimised.
We use the following;
-> plot(,type="b",...)
The lines in the plot do not cross the points. How can we obtain the
same effect in the legend? (points without a line through them..)
We tried setting the pt.bg to white but this did not help.
See script below.
thanks,
Jan
1999 Feb 12
1
Fisher's Exact Test
Appology in advance if this has been asked and answered. I am getting different
answers using Fisher's exact test in the package ctest. For example:
x_cbind(c(8, 22), c(31, 29))
fisher.test(x)
Fisher's Exact Test for Count Data
data: x
p-value = 0.04024
alternative hypothesis: two.sided
However, in SAS or other packages on the net the answer I get is p-value=
0.02664.
Is this
1999 Oct 26
1
Wrong text() adjustment with (math)expression and "\n" (PR#299)
This is adapted from partha_bagchi@hgsi.com 's report on R-help:
plot(0); title(expression("Bad\n with much much more text")))
gives something like
Bad
with much much more text
(``newline w/o carriage return'') instead of centering both lines such as
Bad
with much much more text
which is produced by (just dropping