R/modify_cells2.R

Defines functions px_values.px px_values px_valuenotex.px px_valuenotex px_valuenote.px px_valuenote

Documented in px_valuenote px_valuenote.px px_valuenotex px_valuenotex.px px_values px_values.px

#' @rdname px_valuenote.px
#' @export
px_valuenote <- function(x, value, validate) {
  UseMethod("px_valuenote")
}

#' @eval add_doc_keyword_function_intro("VALUENOTE")
#' @param value `r cells_param_value("VALUENOTE", "2")`
#' @eval param_validate()
#' @eval add_return_px_or_df()
#' @eval add_cells2_example("VALUENOTE", 'Counts are approximated', 'Some of the figures are from 2003', 'Kisitsisit ilaat 2003-imeersuupput')
#' @export
px_valuenote.px <- function(x, value, validate = TRUE) {
  handle_cells(x, value, "2", "valuenote", validate)
}


#' @rdname px_valuenotex.px
#' @export
px_valuenotex <- function(x, value, validate) {
  UseMethod("px_valuenotex")
}

#' @eval add_doc_keyword_function_intro("VALUENOTEX")
#' @param value `r cells_param_value("VALUENOTEX", "2")`
#' @eval param_validate()
#' @eval add_return_px_or_df()
#' @eval add_cells2_example("VALUENOTEX", 'Counts are approximated', 'Some of the figures are from 2003', 'Kisitsisit ilaat 2003-imeersuupput')
#' @export
px_valuenotex.px <- function(x, value, validate = TRUE) {
  handle_cells(x, value, "2", "valuenotex", validate)
}


#' @rdname px_values.px
#' @export
px_values <- function(x, value, validate) {
  UseMethod("px_values")
}

#' @eval add_doc_keyword_function_intro("VALUES")
#' @param value `r cells_param_value("VALUES", "2")`
#' @eval param_validate()
#' @eval add_return_px_or_df()
#' @eval add_cells2_example("VALUES", 'Year 2024', 'toddler', 'meeraaqqap')
#' @export
px_values.px <- function(x, value, validate = TRUE) {
  handle_cells(x, value, "2", "value", validate)
}

Try the pxmake package in your browser

Any scripts or data that you put into this service are public.

pxmake documentation built on April 11, 2025, 6:06 p.m.