quantities {PriceIndices} | R Documentation |
Providing quantities of sold products
Description
The function returns quantities of sold products with given IDs.
Usage
quantities(data, period, set = c(), ID = FALSE)
Arguments
data |
The user's data frame. It must contain columns: |
period |
The time period (as character) limited to the year and month, e.g. "2019-03". |
set |
The set of unique product IDs to be used for determining quantities of sold products (see also |
ID |
A logical parameter indicating whether a data frame with prodIDs and quantities should be returned. |
Value
The function analyzes the user's data frame and returns quantities of products with given ID
and being sold in the time period indicated by the period
parameter. Please note that the function returns the quantity values for sorted prodIDs and in the absence of a given prodID in the data set, the function returns nothing (it does not return zero). If the ID parameter is set to TRUE then the function returns a data frame with columns: by
(IDs of products) and q
(quantities of products).
Examples
quantities(milk, period="2019-06")
quantities(milk, period="2019-12", set=c(400032, 82919), ID=TRUE)