Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用代码在 R 上输入日期时
day1<- as.Date("1999-03-12") dates<-as.Date(day1+interval)
这些代码输出日期列表,但是当我使用代码时
cbind(x, dates)
日期不显示为日期,有谁知道我该如何正确处理,以便在转换为矢量时以日期格式显示?
cbind()创建一个matrix. R 中的矩阵被限制为在所有列中具有相同的类,因此dates被转换为任何类(字符、数字)x。
cbind()
matrix
dates
x
改为使用data.frame(x=x,dates=dates)。
data.frame(x=x,dates=dates)