我在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
有什么建议吗?
答案 0 :(得分:2)
我们可以使用format
format(as.POSIXct(str1), '%d %B')
#[1] "08 July"