Displaying 20 results from an estimated 10000 matches similar to: "getAnywhere"
2003 Sep 24
1
getAnywhere (PR#4275)
'getAnywhere' is not reporting methods when there are periods in the class name or the generic name
(in R-devel).
> getAnywhere( 'predict.loess')
A single object matching 'predict.loess' was found
It was found in the following places
registered S3 method for predict from namespace modreg
namespace:modreg
with value
<<...>>
> getAnywhere(
2003 Jul 11
1
getAnyhwhere behavior
I would have expected the function getAnywhere to have behaved
differently in the following:
> search()
[1] ".GlobalEnv" "file:C:/R/Rdata/miya/.Rdata"
[3] "package:boot" "package:methods"
[5] "package:ctest" "package:mva"
[7] "package:modreg"
2005 Feb 11
3
getAnywhere and functions starting with "." (PR#7684)
Full_Name: Mark Bravington
Version: 2.0.1
OS: Windows XP
Submission from: (NULL) (140.79.22.104)
'getAnywhere' crashes when its argument starts with a period:
> getAnywhere( '.onLoad')
Error in exists(x, envir, mode, inherits) :
invalid first argument
One fix might be to replace the line
if ( !is.null(f <- getS3method(gen, cl, TRUE))) {
with
if ( nchar( gen)
2005 Feb 03
1
getAnywhere
Shouldn't this work?
> .a <- 5
> exists(".a")
[1] TRUE
> getAnywhere(".a")
Error in exists(x, envir, mode, inherits) :
invalid first argument
getAnywhere doesn't seem to like the "." prefix. Is this a bug?
Thanks,
Robert
Robert McGehee
Geode Capital Management, LLC
53 State Street, 5th Floor | Boston, MA | 02109
Tel: 617/392-8396
2009 Apr 16
1
get() versus getAnywhere()
Hi
Using R 2.8.1. I have list object called "AuxData". Inside a browser(),
get("AuxData")
succeeds, while
getAnywhere("AuxData")
fails with the error "no object named ??AuxData?? was found". I'm
curious to know if this could be a bug. If yes, I'll try to come up
with a reproducible example.
Thanks
Ben
2007 Sep 21
2
getAnywhere
Hello,
How can I see a function called "+.dlm"?
> methods("+")
[1] +.Date +.dlm* +.POSIXt
Non-visible functions are asterisked
> getAnywhere("+.dlm")
Error in grep(pattern, x, ignore.case, extended, value, fixed, useBytes) :
invalid regular expression '+\.dlm'
Thanks in advance,
Giovanni
--
Giovanni Petris <GPetris at uark.edu>
2006 Apr 05
1
predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())
Hi,
forget about the below details. It is not related to the fact that
the function is returned from a function. Sorry about that. I've
been troubleshooting soo much I've been shoting over the target. Here
is a much smaller reproducible example:
x <- 1:10
y <- 1:10 + rnorm(length(x))
sp <- smooth.spline(x=x, y=y)
ypred <- predict(sp$fit, x)
# [1] 2.325181 2.756166 ...
2003 Aug 05
1
(PR#3658)
The function 'getAnywhere' crashes if given a non-existent name containing a period:
> getAnywhere( 'nomethod.noclassforme')
Error in get(x, envir, mode, inherits) : variable "nomethod" was not found
However, 'getAnywhere' behaves gracefully if the non-existent name lacks a period:
> getAnywhere( 'nomethod')
no object named `nomethod' was
2006 Apr 05
1
page() (Was: Re: predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall()))
Here I think S3 dispatch is very natural. Try the following:
page <- function(x, method = c("dput", "print"), ...) UseMethod("page")
page.getAnywhere <- function(x, ..., idx=NULL) {
name <- x$name;
objects <- x$obj;
if (length(objects) == 0)
stop("no object named '", name, "' was found");
if (is.null(idx)) {
2004 Nov 11
1
substitute/paste question for using Greek in plot titles
Hi all
I am having troubles making sense of why code (1)
below fails but code (2) below works.
Code (1):
> phi.1 <- 1
> plot(0 ~ 0,
+ main=substitute(paste("A vaue for ",phi," = ",phival),
list(phival=phi.1)) )
Error in paste("The two deviances for ", phi, " = ", 2) :
Object "phi" not found
But this works:
Code (2):
>
2010 May 28
2
How to get the definition of a function if it is masked by a variable?
Hello,
Normally, if I type a function name, it shows the function definition.
When the function is masked by a variable with the same name, it
doesn't show the function definition any more. Can anyone please tell
me a way how to retrieve the function definition even if it is masked
by a variable?
> x=1:3
> length(x)
[1] 3
> length
function (x) .Primitive("length")
>
2011 Aug 22
2
CDFs
Hello all,
I have two columns of numbers. I would like to do the following:
(1) Plot both cdfs, F1 and F2 on the same graph.
(2) Find smoothed approximations of F1 and F2 lets call them F1hat and F2hat
(3) Find values for F1hat when we substitue a value of x in it.
(4) Find the corresponding densities of the cdfs.
Any ideas?
--
Thanks,
Jim.
[[alternative HTML version deleted]]
2012 Feb 24
1
function remains loaded in the search space after detaching the package
I ran into some very irritating behaviour I don't understand. Let me
illustrate with the package gdata() and the function
print.object_size() :
> print(object.size(iris),units='Kb')
6.3 Kb
> getAnywhere(print.object_size)
A single object matching ?print.object_size? was found
It was found in the following places
registered S3 method for print from namespace utils
2007 Feb 05
1
Build error with last R-devel tarball
Hi,
On Windows, with last R-devel tarball (r40647) from
ftp://ftp.stat.math.ethz.ch/Software/R/R-devel_2007-02-04.tar.gz
I get the following build error:
E:\biocbld\bbs-2.0-bioc\R\src\gnuwin32> make
...
...
---------- Making package utils ------------
adding build stamp to DESCRIPTION
installing NAMESPACE file and metadata
installing R files
Error in namespaceExport(ns, exports) :
2010 Mar 09
1
sed help
Hi
Can I know how to use sed to substitue 2 instead of 1 at the same time?
eg:
sed 's/pchloe.com/abc.com/ ; /192.92.123.5/10.10.0.3/g' orgfile >> newfile
thank you
__________________________________________________________________
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-new Yahoo! Mail. Click on Options in Mail and
2008 Dec 13
5
UltraISO can't make a disk image
Wine 1.1.10
Ubuntu 8.04
I downloaded the trial version of UltraISO from http://www.download.com/UltraISO-Premium/3000-2646_4-10177302.html
I need this to make a bin/cue image for an old DOS game, as no Linux program seems to be able to. (If someone can recommend me a substitue, that would be fantastic too)
Anywho, It installed perfectly and runs fine. It can find my CD drive and can read the
2019 Apr 27
2
Suspect error in windows version of 3.60
On 27/04/2019 10:30 a.m., Len Weil wrote:
> Gentlemen,
>
>
>
> I've observed a suspected bug in R-3.60 for Windows 10.
>
> I am using the latest R version, but I have observed the same error in all
> releases: alpha, beta RC and released.
>
> Also the same issue occurs in the 32 and 64 bit GUI versions. The program
> header I invoke is:
>
>
2004 Aug 20
1
Incoming MSN via ZapHFC -> to SIP
Hi there,
I've got a small problem with the zaphfc channel. No MSN of an any
incoming call which comes trough the ISDN card (Acer ISDN, with HFC
chipset and zaphfc driver) which will be forwarded to the SIP-Phone will
be displayed. Always it will be shown "asterisk" an the Display.
--- snip (zapata.conf) ---
[channels]
language=de
switchtype = euroisdn
signalling =
2010 Jul 02
2
S4 classes and debugging - Is there a summary?
Dear all,
I'm getting more and more frustrated with the whole S4 thing and I'm
looking for a more advanced summary on how to deal with them. Often I
get error messages that don't make sense at all, or the code is not
doing what I think it would do. Far too often inspecting the code
requires me to go to the source, which doesn't really help in easily
finding the bit of code
2006 Oct 06
1
operator :: and symbols not in the namespace of a package with a namespace (PR#9279)
Full_Name: Thomas Friedrichsmeier
Version: 2.4.0
OS: GNU/Linux
Submission from: (NULL) (84.61.116.51)
Since R 2.4.0, operator "::" also returns objects in the package environment, if
the package does not have a namespace. This is a very welcome addition.
Additional wish:
If a package has a namespace, but does not place all symbols in that namespace,
lookup will still fail. For example