View source: R/data_retrieve.R
seq_by_3_month | R Documentation |
This function is used internally in the retrieve_sensor
function to generate a sequence of intervals with three-month periods. It takes a start date (start_date
) and an end date (end_date
), and returns a data frame with two columns representing the start and end dates of each interval.
seq_by_3_month(start_date, end_date)
start_date |
Date. Start date in "yyyy-mm-dd" format. |
end_date |
Date. End date in "yyyy-mm-dd" format. |
Dataframe with a start
and an end
columns, each row represents 3 months period.
seq_by_3_month(as.Date('2023-11-01'),as.Date('2024-11-01'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.