as.Date()
R語言中的函數用於將字符串轉換為日期格式。
用法: as.Date(x, format)
參數:
x:字符串變量
format:聲明字符串的格式(%m/%d/%y)
範例1:
# R program to convert string into date
# Creating a string vector
dates <- c("27 / 02 / 92")
# Conversion into date format
result<-as.Date(dates, "% d/% m/% y")
# Print result
print(result)
輸出:
[1] "1992-02-27"
範例2:
# R program to convert string into date
# Creating a string vector
dates <- c("02 / 27 / 92", "02 / 27 / 92",
"01 / 14 / 92", "02 / 28 / 92",
"02 / 01 / 92")
# Conversion into date format
result<-as.Date(dates, "% m/% d/% y")
# Print result
print(result)
輸出:
[1] "1992-02-27" "1992-02-27" "1992-01-14" "1992-02-28" "1992-02-01"
相關用法
- R語言 strftime()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 melt()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 format()用法及代碼示例
- R語言 strptime()用法及代碼示例
- R語言 weekdays()用法及代碼示例
- R語言 months()用法及代碼示例
- R語言 quarters()用法及代碼示例
- R語言 toupper()用法及代碼示例
- R語言 dQuote()用法及代碼示例
- R語言 sQuote()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 parse()用法及代碼示例
- R語言 deparse()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert a String into Date Format in R Programming – as.Date() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。