Displaying 20 results from an estimated 30000 matches similar to: "(inappropriate) manipulation of expression objects causes segfault (PR#7326)"
2004 Nov 01
0
(PR#7326)(inappropriate) manipulation of expression objects
On 29 Oct 2004, Peter Dalgaard wrote:
> deepayan@stat.wisc.edu writes:
>
> > > foo <- expression(alpha, beta, gamma)
> > > foo[2]
> > expression(beta)
> > > foo[2] <- NA
> > > foo ## or str(foo)
> > Segmentation fault
> >
> > (Same behaviour in R 1.9.1)
> >
> > 'foo[[2]] <- NA' works fine, though.
2019 Jun 15
0
inappropriate warning in latticeExtra
On Fri, Jun 14, 2019 at 6:42 PM Richard M. Heiberger <rmh at temple.edu> wrote:
>
> This is still not repaired in
> R version 3.6.0 Patched (2019-05-17 r76528)
> > library(latticeExtra)
> > a <- xyplot(1 ~ 1)
> > c(a,a)
> Warning message:
> In formals(fun) : argument is not a function
>
> Can we have it in R-3.6.1 that Peter just announced?
Sorry
2019 Dec 06
1
inappropriate warning in latticeExtra
This problem is still present in
> version
_
platform x86_64-w64-mingw32
arch x86_64
os mingw32
system x86_64, mingw32
status Under development (unstable)
major 4
minor 0.0
year 2019
month 12
day 03
svn rev 77513
language R
version.string R Under development (unstable)
2019 Jun 14
0
inappropriate warning in latticeExtra
On 14/06/2019 9:12 a.m., Richard M. Heiberger wrote:
> This is still not repaired in
> R version 3.6.0 Patched (2019-05-17 r76528)
>> library(latticeExtra)
>> a <- xyplot(1 ~ 1)
>> c(a,a)
> Warning message:
> In formals(fun) : argument is not a function
>
> Can we have it in R-3.6.1 that Peter just announced?
That looks like a bug in the latticeExtra
2004 Jul 12
3
Segfault with options() (PR#7078)
This is completely undocumented use of options, but it does cause a
segfault with r-patched and r-devel on Linux:
options(list('digits', 'scipen'))
Strangely enough,
options(list('digits'))
and
options(list(digits = 10, scipen = 2))
work as might be expected.
Deepayan
2018 Apr 02
0
inappropriate warning in latticeExtra
On Fri, Mar 23, 2018 at 7:58 AM, Richard M. Heiberger <rmh at temple.edu> wrote:
> The warning message in the last line of this email is incorrect.
> This is behavior which Duncan Murdoch labeled a bug in
> https://stat.ethz.ch/pipermail/r-help/2017-December/450494.html
Yes, sorry, this has been fixed in the r-forge sources for a while
now, but I haven't had the time to
2019 Jun 14
4
inappropriate warning in latticeExtra
This is still not repaired in
R version 3.6.0 Patched (2019-05-17 r76528)
> library(latticeExtra)
> a <- xyplot(1 ~ 1)
> c(a,a)
Warning message:
In formals(fun) : argument is not a function
Can we have it in R-3.6.1 that Peter just announced?
Rich
On Mon, Apr 2, 2018 at 4:08 AM Deepayan Sarkar
<deepayan.sarkar at gmail.com> wrote:
>
> On Fri, Mar 23, 2018 at 7:58 AM,
2018 Mar 23
2
inappropriate warning in latticeExtra
The warning message in the last line of this email is incorrect.
This is behavior which Duncan Murdoch labeled a bug in
https://stat.ethz.ch/pipermail/r-help/2017-December/450494.html
This is a fresh install of R-devel (2018-03-21 r74436)
R Under development (unstable) (2018-03-21 r74436) -- "Unsuffered Consequences"
Copyright (C) 2018 The R Foundation for Statistical Computing
2007 Jul 19
1
substitute and expression (Peter Dalgaard)
In this connection, note the following
> a4 <- 4
> plotThis <- bquote(alpha==.(a), list(a=a4))
> do.call(plot, list(1:10, main=do.call(expression, c(plotThis))))
> do.call(plot, list(1:10, main=do.call(expression, plotThis)))
Error in do.call(expression, plotThis) : second argument must be a list
> ## Whereas plotThis has class "call", c(plotThis) has class
2006 Apr 18
1
levelplot
> I'm running debian unstable, and have been happy with the packages
> that Dirk provides for unstable so far. update.packages() doesn't seem to
> update lattice to 0.13.
It's in a special directory (because it's not compatible with R 2.2) that
update.packages doesn't know about (I think).
> Perhaps email to r-sig-debian?
Sounds like the proper way to go, so
2004 Dec 15
1
RE: Lattice update error (PR#7423)
OK. Sorry to have bothered you. It may well have been the namespace issue, a
subtlety that I would have been unaware of. Thanks. I've cc'ed this to
r-bugs in case there is anything they wish to do about it.
-- Bert Gunter
> -----Original Message-----
> From: Deepayan Sarkar [mailto:deepayan@stat.wisc.edu]
> Sent: Wednesday, December 15, 2004 12:05 PM
> To: Berton Gunter
2004 Oct 23
0
(PR#7309) misuse of R-bugs (was inappropriate definition
>From the R FAQ
Bug reports on contributed packages should be sent first to the package
maintainer, and only submitted to the R-bugs repository by package
maintainers, mentioning the package in the subject line.
and you are NOT the listed maintainer.
Do learn to read FAQs before causing unnecessary work for other people
(as the R posting guide asks).
Please do as the FAQ asks.
On
2005 Aug 03
1
R CMD check failing to warn when it should
Hi,
I recently made changes to lattice code which needed changes in many
man pages as well. Before I made the appropriate changes, R CMD check
was flagging most of the problems correctly, except for the man page
for tmd. I have created a toy package that shows this, available at
http://www.stat.wisc.edu/~deepayan/R/tmdprob_0.12-2.tar.gz
This passes R CMD check on R 2.1.0 and r-devel from August
2005 Mar 11
1
unexpected behaviour of expression(sum())
I'm seeing inconsistent symbols from the same expression with the
following code:
expr = expression(sum(x, 1, n))
plot(1, main = expr, type = "n")
text(1, 1, expr)
Moreover, the inconsistency is reversed in r-devel compared to R 2.0.1.
In particular, the main label shows a \bigoplus instead of \sum in
r-devel, and the other way round in 2.0.1. demo(plotmath) shows \sum in
2007 Jul 16
2
substitute and expression
Hi,
I'm trying to understand whether the use of substitute() is
appropriate/documented for plotmath annotation. The following two
calls give the same results:
> plot(1:10, main = expression(alpha == 1))
> do.call(plot, list(1:10, main = expression(alpha == 1)))
But not these two:
> plot(1:10, main = substitute(alpha == a, list(a = 2)))
> do.call(plot, list(1:10, main =
2003 May 12
1
file manipulation error / COM port error
hi....
I'm using Wine 20030408 on FreeBSD 4.6.2
I believe the instalation is ok (made by ports....)
I've to run some applications wich does some file
manipulations, such as creating and removing....
Creating a file is ok, but when it tries to remove it,
the app shows a message box sayng it was not possible
to rename the file . Disk access error. (actually, it
creates a file and add
2004 Aug 27
1
selecting unique columns of a matrix/data frame
Hi all,
I have a very high dimensional data and apparently there are several
columns that contain similar information (some columns are equal). I
want to form a matrix/data frame consisting of unique columns. Does
anyone have an efficient way of getting out these columns. A small
section of the data frame is given below.
Thanks for helping.
Stephen.
> newdata
[,1] [,2] [,3] [,4] [,5]
2006 Mar 11
1
RFC: default background on lattice plots
Hi,
Many of the complaints about lattice stem from the default settings
(a.k.a. theme) on screen devices, which has a grey background. It's
easy enough to change this, even pseudo-permanently through a startup
script, so this is not a serious problem. However, there's one
situation where this has an unfortunate effect: on Windows, someone
might
1. create a plot (on screen)
2. right click
2002 Jun 17
1
Bind failed: Inappropriate authentication
Every time I try and add a user to samba using 'smbpasswd -a -m meuser' I
get the following error messages:
Bind failed: Inappropriate authentication
Bind failed: Inappropriate authentication
Failed to add entry for user meuser.
Failed to modify password entry for user meuser
These are the steps from the docs that I take to create a user:
Step 1. /usr/sbin/useradd -g 100 -d
2005 Sep 07
1
hdparm: Inappropriate ioctl for device
Can someone please explain what's wrong here. And how to solve it.
I run CentOS-4.1
MSI K8N Neo Platinum Athlon 3000
Seagate Barracuda 7200.7 S-ATA disc
[root at amd64 kai]# /sbin/hdparm -tT /dev/sda
/dev/sda:
Timing cached reads: 2808 MB in 2.00 seconds = 1402.81 MB/sec
HDIO_DRIVE_CMD(null) (wait for flush complete) failed: Inappropriate
ioctl for device
Timing buffered disk reads: