The test cases are built upon data frames where date is mostly of numeric mode, which shoots up (correctly, it is desired and intended in the code) the following warning message:
Warning (testneatRanges_combine.R:108:3): combine_ranges functions with date formats and startendAttr
Be aware: Column 'end' is not a date class variable, hence trying to convert into a date. Originally, the column is of mode 'numeric'. Was counting in ideal case with non-numeric mode of the column (e.g. 'character' or 'POSIXct')
As take a look at the warning:
Warning (testneatRanges_fill.R:177:3): fill_ranges functions with timestamp formats
Dimension 'timestamp' selected but format unchanged. Will try to convert to '%Y-%m-%d %H:%M:%OS' ..
can it be avoided by proper column class?
The test cases are built upon data frames where date is mostly of numeric mode, which shoots up (correctly, it is desired and intended in the code) the following warning message:
As take a look at the warning:
can it be avoided by proper column class?