R中的日期时间从datetime格式转换为datemonth

时间:2015-10-18 10:22:26

标签: r datetime regression linear

我在R中有两列,如:

Microsoft.ReportViewer.Common.dll
Microsoft.ReportViewer.DataVisualization.dll
Microsoft.ReportViewer.ProcessingObjectModel.dll
Microsoft.ReportViewer.WebForms.dll

现在,我想将第一列(即日期时间列)转换为datemonth列。 像:

2004-07-08 14:30:00         12.41

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

我们可以使用format

format(as.POSIXct(str1), '%d %B')
#[1] "08 July"