Skip to content
Back to formatted view

Raw Message

Message-ID: <loom.20131128T160643-841@post.gmane.org>
Date: 2013-11-28T15:07:29Z
From: Ben Bolker
Subject: date format

eliza botto <eliza_botto <at> hotmail.com> writes:

> 
> Dear Users of R,
> I have a data frame with three column, the first column contains years,
the second one months and third one,
> the days (cbind(yyyy mm dd)). I want to combine them so that i have one
column with the date format as (dd.mm.yyyy).
> Is there a way of doing that.
> Thanks in advance,
> Eliza 		 	   	

  I think just paste(dd,mm,yyyy,sep=".") should work fine (where 'dd','mm',
'yyyy' are references to your columns)