Skip to content
Back to formatted view

Raw Message

Message-ID: <67E5AF23-8948-463A-B054-BD04264B7E9D@comcast.net>
Date: 2014-08-27T19:34:16Z
From: David Winsemius
Subject: Issue with formula conversion
In-Reply-To: <CAHmzXO7DNwLne_1epBVPAyTvZs464W2SEhT6QVCPBO-h0V=ZWg@mail.gmail.com>

On Aug 27, 2014, at 11:19 AM, Gang Chen wrote:

> A random effect formulation for R package nlme is read in as a string
> of characters from an input file:
> 
> ranEff <- "pdCompSymm(~1+Age)"
> 
> I need to convert 'ranEff' to a formula class. However, as shown below:
> 
>> as.formula(ranEff)
> ~1 + Age
> 
> the "pdCompSymm" is lost in the conversion. Any solutions? 

as.formula(paste("~",ranEff))
~pdCompSymm(~1 + Age)
-- 

David Winsemius
Alameda, CA, USA