如何在R中将列转换为日期格式?

时间:2019-05-16 12:38:37

标签: r

我尝试读取数据集,但是有一列以'm / d / y h:m'格式包含日期。我想将该列转换为日期格式。

9/1/2013 0:00   -1.1   -0.1  14.28
9/1/2013 0:01   -1.1    0    14.29
9/1/2013 0:02   -1      0.2  14.31
9/1/2013 0:03   -0.8    0.2 
9/1/2013 0:04   -0.6    0.4  14.32
9/1/2013 0:05   -0.8    0.5  14.34
9/1/2013 0:06   -0.8    0.6  14.36


building_data = read.csv("../Data/building_data.csv", header = FALSE, sep=",")

当我用ggplot绘制它时,日期不再可读,它只是一条大黑线。

temperature_outside <- building_data$temp_out
date <- building_data$date

ggplot() + geom_point(data=building_data, aes(date, temperature_outside)) + ggtitle("Data")

ggplot

0 个答案:

没有答案