Nothing
#' @title Calculate the number of days in a given year
#'
#' @description
#' Calculate the number of days in a given year.
#'
#' @param year A given year, vectorization parameter passing is supported.
#'
#' @return Days in a given year.
#'
#' @examples
#' ydays(2025)
#'
#' @export
#------------------------------------------------------------------------------#
ydays = function(year) {
365 + leap_year(year)
}
#------------------------------------------------------------------------------#
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.