as.date

    1熱度

    1回答

    請幫我變換characters到date格式 as.date和strptime不工作... c <- data.frame(id = c('1', '2', '3', '4'), Date = c("01-Feb-16","03-May-15","24-Oct-14","20-Oct-12")) c$Date <- as.character(c$Date) str(c) 然後我試圖使用代碼

    1熱度

    1回答

    我一直在試圖將年份月份作爲新列添加到我的以下示例數據集中。 time site 1 1/01/2000 A 2 1/02/2000 A 3 1/03/2000 A 4 1/04/2000 A 5 1/05/2000 A 6 1/06/2000 A 7 1/07/2000 A 8 1/08/2000 A 9 1/09/2000 A 10 1/10/2000 A 11 1/11

    0熱度

    1回答

    我有一個數據幀是這樣的: Days Ahm5 01/06/1961 0.00000 02/06/1961 0.19266 03/06/1961 1.67610 ........ ........ 30/09/1961 5.26514 01/06/1962 0.05200 ......... ........ 30/09/2007 0.866473 這裏的數據:https://

    -1熱度

    1回答

    我正在使用this data。當我想定義變量as.Date()我得到NA。 這是我正在使用的代碼。有人能告訴我做錯了什麼嗎? dataf <- read.csv("DB.csv") dataf$Date <- as.Date(dataf$Date, format = "%b-%Y") str(dataf) 'data.frame': 55 obs. of 9 variables: $ Da

    0熱度

    2回答

    我從google.finance得到了這個數據框,並且我希望「日期」列處於日期格式。 `read.csv("ual.csv", header = TRUE, stringsAsFactors = FALSE)? head(Ual_df) Date Open High Low Close Volume 1 19-May-17 76.42 78.34 76.18 77.98 41436

    -2熱度

    2回答

    我有一年列的數據幀財政年度 Year 2001-02 2002-03 2003-04 我怎樣才能將它轉換爲as.Date既保持整個事情或只是第二年即2002,2003,2004。在與%Y轉換,我不可避免地得到2001-08-08,2002-08-08,2003-08-08等 感謝

    0熱度

    2回答

    我需要在R中格式化日期,其格式爲「01OCT2011」。問題是,功能as.Date只是考慮德國月。在這裏,我舉一個例子: > test <- c("15MAI2006","01OCT2011") > test1 <- as.Date(test, format='%d%B%Y') > test1 [1] "2006-05-15" NA 「MAY」是德語「MAI」。該功能沒有得到英文拼寫OC

    0熱度

    3回答

    如果我轉換日期61年10月10日(DD.MM.YY)與as.Date(date, format="%d.%m.%y")由於某種原因,將其轉換成2061 -10-10。有沒有一個優雅的方式來糾正這個問題,還是我必須通過切分字符串並在前面添加「19」來手動執行?我也嘗試了動物園包,它帶來了相同(錯誤)的結果。 謝謝!

    -5熱度

    2回答

    我是R新手,嘗試加載一些時間序列數據,但我被困在第一個障礙。 我有一個數據幀與日期列Date。數據的日期格式爲:​​(當我打印df時,它在R控制檯中顯示爲這樣)。讀作日期我想: df$Date <- as.Date(df$Date, "%dd-%bbb-%yy") 按照指導here 產生價值<NA>時,它讀取數據。

    1熱度

    2回答

    我想繪製日期,x和y在R中的3D圖中(使用RStudio 0.99.903),R(3.3.2),scatterplot3d(0.3-40),rgl( 0.98.1) dates = c("2016-11-10","2016-11-20","2016-12-01","2016-12-15","2016-12-30") x = rnorm(5,0,1) y = rnorm(5,1,2) A