
Last chance! 50% off unlimited learning
Sale ends in
The function returns all values from the indicated column (defined by the type
parameter) which occur simultaneously in the compared periods or in a given time interval.
matched(data, period1, period2, type = "prodID", interval = FALSE)
The function returns all values from the indicated column (defined by the type
parameter) which occur simultaneously in the compared periods or in a given time interval. Possible values of the type
parameter are: retID
, prodID
, codeIN
, codeOUT
or description
. If the interval
parameter is set to FALSE, then the function compares only periods defined by period1
and period2
. Otherwise the whole time period between period1
and period2
is considered.
The user's data frame. It must contain a column time
(as Date in format: year-month-day, e.g. '2020-12-01') and also a column indicated by the type
parameter.
The first period (as character) limited to the year and month, e.g. "2019-03".
The second period (as character) limited to the year and month, e.g. "2019-04".
This parameters defines the column which is used in the procedure. Possible values of the type
parameter are: retID
, prodID
, codeIN
, codeOUT
or description
.
A logical parameter indicating whether the procedure is to work for the whole time period between period1
and period2
(then it is TRUE).
matched(milk, period1="2018-12", period2="2019-12", interval=TRUE)
matched(milk, period1="2018-12", period2="2019-12", type="description")
Run the code above in your browser using DataLab