1 將日期的字元型轉換為數值型 日
期值通常以字串的形式輸入到r中,然後轉化為以數值形式儲存的日期變數。函式
as.date()用於執行這種轉化。
其語法為as.date(x, "input_format"),其中x是字元型數
據,input_format則給出了用於讀入日期的適當格式:
舉例:日期值的預設輸入格式為yyyy-mm-dd。語句:
mydata
strdata
dates
str(dates)
也使用函式:format(x, format="output_format")來輸出指定格式的日期值,並且
可以提取日期值中的某些部分:
例子:
today
format(today,format="%b/%d--%y")
format(today,format="%b %d %y")
2 將日期的數值型轉換為字元型
函式:strdates
3 型別轉換
r中提供了一系列用來判斷某個物件的資料型別和將其轉換為另一種資料型別的函式。
R語言處理字串
用於字串分割的函式 如strsplit 123abcdefgabcdef ab 1 1 123 cdefg cdef 字串連線 paste paste sep collapse null 字串分割 strsplit strsplit x,split,extended true,fixed false...
字串處理函式 R語言
用於字串分割的函式 如strsplit 123abcdefgabcdef ab 1 1 123 cdefg cdef 字串連線 paste paste sep collapse null 字串分割 strsplit strsplit x,split,extended true,fixed false...
R語言 字串處理函式
r語言中字串處理函式 來自base包 函式說 明 nchar x 計算x中的字元數量 substr 提取或替換乙個字元向量中的子串 grep 在字串中匹配某種模式 sub 在字串中搜尋模式,並以另乙個文字替換 strsplit 分割字串 toupper 大寫轉換 tolower 小寫轉換 1 nch...