library(Rlibeemd)
library(tidyverse)
t <- readxl::read_excel("G:\\Rspace\\output\\output_2019_modified.xlsx") %>%
mutate(datej = as.numeric(as.POSIXct(as.Date(datej, format = "%Y/%m/%d"))))
t <- as.matrix(t)
I double-checked the data and didn't find any missing values, but they appear after the function applyed
I can upload the column data excel for reproducing error scenarios.