I heard that a function called use() had been mooted as being more intuitively
named than library()
If so, it might be handy if this worked
use(c("MASS","car”))
currently this fails…
library(c("MASS","car"))
__
R-devel@r-project.org mailing list
http
First of all thanks a lot to you both for all the replies, they have been of
great help to me!
I got the basic embedding running, however I still have some issues to solve in
order to complete the interface to R I am working on:
1. I initialize with Rf_initEmbeddR().
- Is there a way to have mo
"Timothy Bates" wrote in message
news:1b5e1d00-397b-429b-b20c-0fba06084...@gmail.com...
I heard that a function called use() had been mooted as being more
intuitively named than library()
If so, it might be handy if this worked
use(c("MASS","car))
currently this fails
library(c("MASS","ca
On Nov 10, 2011, at 6:24 PM, KR wrote:
> First of all thanks a lot to you both for all the replies, they have been of
> great help to me!
>
> I got the basic embedding running, however I still have some issues to solve
> in
> order to complete the interface to R I am working on:
>
> 1. I ini
On Nov 11, 2011, at 10:08 AM, Simon Urbanek wrote:
>
> On Nov 10, 2011, at 6:24 PM, KR wrote:
>
>> First of all thanks a lot to you both for all the replies, they have been of
>> great help to me!
>>
>> I got the basic embedding running, however I still have some issues to solve
>> in
>> or
Suppose
plotx <- "someName"
modx <- "otherName"
plotxRange <- c(10,20)
modxVals <- c(1,2,3)
It often happens I want to create a dataframe or object with plotx or
modx as the variable names. But can't understand syntax to do that.
I can get this done in 2 steps, creating the data frame and then
On Fri, Nov 11, 2011 at 10:25 AM, Paul Johnson wrote:
> Suppose
>
> plotx <- "someName"
> modx <- "otherName"
> plotxRange <- c(10,20)
> modxVals <- c(1,2,3)
>
> It often happens I want to create a dataframe or object with plotx or
> modx as the variable names. But can't understand syntax to do t
> plotx <- "someName"
> modx <- "otherName"
> data.frame( structure(list(c(1, 2, 3, 4)), names=plotx), structure(list(c(4,
> 4, 4, 4)), names=modx))
someName otherName
11 4
22 4
33 4
44 4
(I think this is more of an R-help question
Dear R-devel readers:
I am really stuck trying resolving an issue with the use of the
Matrix in one of my packages, irlba, with R-2.14.0. When I use
crossprod with at least one sparse argument in the packaged code I
receive the error:
Error in crossprod(x, y) :
requires numeric/complex matrix
On Nov 11, 2011 6:13 PM, "Bryan W. Lewis" wrote:
">
> Dear R-devel readers:
>
> I am really stuck trying resolving an issue with the use of the
> Matrix in one of my packages, irlba, with R-2.14.0. When I use
> crossprod with at least one sparse argument in the packaged code I
> receive the error
10 matches
Mail list logo