Displaying 3 results from an estimated 3 matches for "e1expr".
Did you mean:
cgexpr
2008 Mar 13
2
Making custom unary operators in R
...seen that suggests it
should):::
> %!% 4
Error: unexpected SPECIAL in "%!%"
The source code for the '?' operator almost seems to suggest that a mixed
unary / binary non-primitive R function is possible::
> get('?')
function (e1, e2)
{
e1Expr <- substitute(e1)
if (missing(e2)) {
if (is.call(e1Expr))
return(.helpForCall(e1Expr, parent.frame()))
if (is.name(e1Expr))
e1 <- as.character(e1Expr)
eval(substitute(help(TOPIC), list(TOPIC = e1)))
}...
2006 Oct 11
1
Possible bug in accessing methods documentation?
...t; z <- featureNames(sample.ExpressionSet)
> z[1:2]
[1] "AFFX-MurIL2_at" "AFFX-MurIL10_at"
> ?featureNames(sample.ExpressionSet)
Warning message:
no method defined for function 'featureNames' and signature 'object = "missing"' in: .helpForCall(e1Expr, parent.frame())
Error in .helpForCall(e1Expr, parent.frame()) :
no documentation for function 'featureNames' and signature 'object = "missing"'
Am I expecting the wrong thing or is this broken?
+ seth
2006 Oct 11
1
Possible bug in accessing methods documentation? (PR#9291)
...(sample.ExpressionSet)
>> z[1:2]
> [1] "AFFX-MurIL2_at" "AFFX-MurIL10_at"
>> ?featureNames(sample.ExpressionSet)
> Warning message:
> no method defined for function 'featureNames' and signature 'object = "missing"' in: .helpForCall(e1Expr, parent.frame())
> Error in .helpForCall(e1Expr, parent.frame()) :
> no documentation for function 'featureNames' and signature 'object = "missing"'
>
>
> Am I expecting the wrong thing or is this broken?
I think it's broken. The line tha...