Here is an example where cbind fails with an error when check.names=TRUE is set.
data(airquality)
airQualityBind =cbind(airquality,airquality,check.names =TRUE)
I understand that cbind is a call to data.frame and the following works:
airQualityBind =data.frame(airquality,airquality,check.name
On Tue, Jul 23, 2013 at 9:18 AM, Fg Nu wrote:
>
>
>
> Here is an example where cbind fails with an error when check.names=TRUE is
> set.
>
> data(airquality)
> airQualityBind =cbind(airquality,airquality,check.names =TRUE)
>
>
> I understand that cbind is a call to data.frame and the following w
On Tue, Jul 23, 2013 at 12:54 PM, Fg Nu wrote:
>
>
>
> - Original Message -
> From: Ista Zahn
> To: Fg Nu
> Cc: "r-devel@r-project.org"
> Sent: Tuesday, July 23, 2013 9:50 PM
> Subject: Re: [Rd] cbind error with check.names
>
> On Tue, Jul 23, 2013 at 9:18 AM, Fg Nu wrote:
>>
>>
>>
>>