-1
カルナータカが受け取った降雨のデータセットは次のとおりです。どのように私はそれをRの時系列形式に変換できますか? tidyr
とzoo
で次の形式のデータフレームを時系列に変換します
カルナータカが受け取った降雨のデータセットは次のとおりです。どのように私はそれをRの時系列形式に変換できますか? tidyr
とzoo
で次の形式のデータフレームを時系列に変換します
、これが唯一のいくつかの手順を取ります。また、dplyr
をロードする場合は、パイプすることができます。あなたのテーブルがdf
...
library(dplyr)
library(tidyr)
library(zoo)
df %>%
# use tidyr to convert the wide data to long
gather(key = month, value = value, -Year) %>%
# use zoo to create a year-month index
mutate(yearmon = as.yearmon(paste(month, Year))) %>%
# now make a zoo object of the values with that index
with(., zoo(value, order.by = yearmon))