Search code examples
rdata-export

Exporting Decomposed Data from R into Excel


I am trying to export decomposed data the decomposed time series data from R into excel. Can anyone help ?

enter image description here


Solution

  • An option with tidyverse

    library(dplyr)
    library(readr)
    bind_cols(A.modwt) %>%
          write_csv(result, 'result.csv')