MyNixOS website logo
Description

Behavioral Economic Easy Demand.

Facilitates many of the analyses performed in studies of behavioral economic demand. The package supports commonly-used options for modeling operant demand including (1) data screening proposed by Stein, Koffarnus, Snider, Quisenberry, & Bickel (2015; <doi:10.1037/pha0000020>), (2) fitting models of demand such as linear (Hursh, Raslear, Bauman, & Black, 1989, <doi:10.1007/978-94-009-2470-3_22>), exponential (Hursh & Silberberg, 2008, <doi:10.1037/0033-295X.115.1.186>) and modified exponential (Koffarnus, Franck, Stein, & Bickel, 2015, <doi:10.1037/pha0000045>), and (3) calculating numerous measures relevant to applied behavioral economists (Intensity, Pmax, Omax). Also supports plotting and comparing data.

CRAN_Status_Badge downloads total

Behavioral Economic (be) Easy (ez) Demand

Behavioral economic demand is gaining in popularity. The motivation behind beezdemand was to create an alternative tool to conduct these analyses. This package is not necessarily meant to be a replacement for other softwares; rather, it is meant to serve as an additional tool in the behavioral economist’s toolbox. It is meant for researchers to conduct behavioral economic (be) demand the easy (ez) way.

Note About Use

Currently, this version (0.1.0) is the first minor release and is stable. I encourage you to use it but be aware that, as with any software release, there might be (unknown) bugs present. I’ve tried hard to make this version usable while including the core functionality (described more below). However, if you find issues or would like to contribute, please open an issue on my GitHub page or email me.

Installing beezdemand

CRAN Release (recommended method)

The latest stable version of beezdemand (currently v.0.1.0) can be found on CRAN and installed using the following command. The first time you install the package, you may be asked to select a CRAN mirror. Simply select the mirror geographically closest to you.

install.packages("beezdemand")

library(beezdemand)

GitHub Release

To install a stable release directly from GitHub, first install and load the devtools package. Then, use install_github to install the package and associated vignette. You don’t need to download anything directly from GitHub, as you should use the following instructions:

install.packages("devtools")

devtools::install_github("brentkaplan/beezdemand", build_vignettes = TRUE)

library(beezdemand)

GitHub Development Version

To install the development version of the package, specify the development branch in install_github:

devtools::install_github("brentkaplan/beezdemand@develop")

Using the Package

Example Dataset

An example dataset of responses on an Alcohol Purchase Task is provided. This object is called apt and is located within the beezdemand package. These data are a subset of from the paper by Kaplan & Reed (2018). Participants (id) reported the number of alcoholic drinks (y) they would be willing to purchase and consume at various prices (x; USD). Note the format of the data, which is called “long format”. Long format data are data structured such that repeated observations are stacked in multiple rows, rather than across columns. First, take a look at an extract of the dataset apt, where I’ve subsetted rows 1 through 10 and 17 through 26:

idxy
1190.010
2190.510
3191.010
4191.58
5192.08
6192.58
7193.07
8194.07
9195.07
10196.06
17300.03
18300.53
19301.03
20301.53
21302.02
22302.52
23303.02
24304.02
25305.02
26306.02

The first column contains the row number. The second column contains the id number of the series within the dataset. The third column contains the x values (in this specific dataset, price per drink) and the fourth column contains the associated responses (number of alcoholic drinks purchased at each respective price). There are replicates of id because for each series (or participant), several x values were presented.

Converting from Wide to Long and Vice Versa

Take for example the format of most datasets that would be exported from a data collection software such as Qualtrics or SurveyMonkey or Google Forms:

## the following code takes the apt data, which are in long format, and converts
## to a wide format that might be seen from data collection software
wide <- spread(apt, x, y)
colnames(wide) <- c("id", paste0("price_", seq(1, 16, by = 1)))
knitr::kable(wide[1:5, 1:10])
idprice_1price_2price_3price_4price_5price_6price_7price_8price_9
19101010888777
30333322222
38444444433
6010108866554
6810109988765

A dataset such as this is referred to as “wide format” because each participant series contains a single row and multiple measurements within the participant are indicated by the columns. This data format is fine for some purposes; however, for beezdemand, data are required to be in “long format” (in the same format as the example data described earlier). In order to convert to the long format, some steps will be required.

First, it is helpful to rename the columns to what the prices actually were. For example, for the purposes of our example dataset, price_1 was $0.00 (free), price_2 was $0.50, price_3 was $1.00, and so on.

## make an object to hold what will be the new column names
newcolnames <- c("id", "0", "0.5", "1", "1.50", "2", "2.50", "3", 
                 "4", "5", "6", "7", "8", "9", "10", "15", "20")
## current column names
colnames(wide)
 [1] "id"       "price_1"  "price_2"  "price_3"  "price_4"  "price_5" 
 [7] "price_6"  "price_7"  "price_8"  "price_9"  "price_10" "price_11"
[13] "price_12" "price_13" "price_14" "price_15" "price_16"
## replace current column names with new column names
colnames(wide) <- newcolnames

## how new data look (first 5 rows only)
knitr::kable(wide[1:5, ])
id00.511.5022.503456789101520
191010108887776655432
303333222222221111
384444444333322200
60101088665544332200
68101099887655544300

Now we can convert into a long format using some of the helpful functions in the tidyverse package (make sure the package is loaded before trying the commands below).

## using the dataframe 'wide', we specify the key will be 'price', the values 
## will be 'consumption', and we will select all columns besides the first ('id')
long <- tidyr::gather(wide, price, consumption, -id)

## we'll sort the rows by id
long <- arrange(long, id)

## view the first 20 rows
knitr::kable(long[1:20, ])
idpriceconsumption
19010
190.510
19110
191.508
1928
192.508
1937
1947
1957
1966
1976
1985
1995
19104
19153
19202
3003
300.53
3013
301.503

Two final modifications we will make will be to (1) rename our columns to what the functions in beezdemand will expect to see: id, x, and y, and (2) ensure both x and y are in numeric format.

colnames(long) <- c("id", "x", "y")

long$x <- as.numeric(long$x)
long$y <- as.numeric(long$y)
knitr::kable(head(long))
idxy
190.010
190.510
191.010
191.58
192.08
192.58

The dataset is now “tidy” because: (1) each variable forms a column, (2) each observation forms a row, and (3) each type of observational unit forms a table (in this case, our observational unit is the Alcohol Purchase Task data). To learn more about the benefits of tidy data, readers are encouraged to consult Hadley Wikham’s essay on Tidy Data.

Obtain Descriptive Data

Descriptive values of responses at each price can be obtained easily. The resulting table includes mean, standard deviation, proportion of zeros, number of NAs, and minimum and maximum values. If bwplot = TRUE, a box-and-whisker plot is also created and saved. By default, this location is a folder named “plots” one level up from the current working directory. The user may additionally specify the directory that the plot should save into, the type of file (either "png" or "pdf"), and the filename. Notice the red crosses indicate the mean. Defaults are shown here:

GetDescriptives(dat = apt, bwplot = FALSE, outdir = "../plots/", device = "png", 
                filename = "bwplot")

To actually run the code and generate the file, we will turn bwplot = TRUE. The function will create a folder one level higher than the current folder (i.e., the ../ portion) and save the file, “bwplot.png” in the folder.

GetDescriptives(dat = apt, bwplot = TRUE, outdir = plotdir, device = "png", 
                filename = "bwplot")

And here is the table that is returned from the function:

PriceMeanMedianSDPropZerosNAsMinMax
06.86.52.620.00310
0.56.86.52.620.00310
16.56.52.270.00310
1.56.16.01.910.0039
25.35.51.890.0028
2.55.25.01.870.0028
34.85.01.480.0027
44.34.51.570.0027
53.93.51.450.0027
63.53.01.430.0026
73.33.01.340.0026
82.62.51.510.1005
92.42.01.580.1005
102.22.01.320.1004
151.10.51.370.5003
200.80.01.140.6003

Change Data

There are certain instances in which data are to be modified before fitting, for example when using an equation that logarithmically transforms y values. The following function can help with modifying data:

  • nrepl indicates number of replacement 0 values, either as an integer or "all". If this value is an integer, n, then the first n 0s will be replaced.

  • replnum indicates the number that should replace 0 values

  • rem0 removes all zeros

  • remq0e removes y value where x (or price) equals 0

  • replfree replaces where x (or price) equals 0 with a specified number

ChangeData(dat = apt, nrepl = 1, replnum = 0.01, rem0 = FALSE, remq0e = FALSE, 
           replfree = NULL)

Identify Unsystematic Responses

Using the following function, we can examine the consistency of demand data using Stein et al.’s (2015) alogrithm for identifying unsystematic responses. Default values shown, but they can be customized.

CheckUnsystematic(dat = apt, deltaq = 0.025, bounce = 0.1, reversals = 0, ncons0 = 2)
idTotalPassDeltaQDeltaQPassBounceBouncePassReversalsReversalsPassNumPosValues
1930.2112Pass0Pass0Pass16
3030.1437Pass0Pass0Pass16
3830.7885Pass0Pass0Pass14
6030.9089Pass0Pass0Pass14
6830.9089Pass0Pass0Pass14

Analyze Demand Data

Results of the analysis return both empirical and derived measures for use in additional analyses and model specification. Equations include the linear model, exponential model, and exponentiated model. Soon, I will be including the nonlinear mixed effects model, mixed effects versions of the exponential and exponentiated model, and others. However, currently these models are not yet supported.

Obtaining Empirical Measures

Empirical measures can be obtained separately on their own:

GetEmpirical(dat = apt)
idIntensityBP0BP1OmaxePmaxe
1910NA204515
303NA202020
3841510217
60101510248
68101510369

Obtaining Derived Measures

FitCurves() has several important arguments that can be passed. For the purposes of this document, focus will be on the two contemporary demand equations.

  • equation = "hs" is the default but can accept the character strings "linear", "hs", or "koff", the latter two of which are the contemporary equations proposed by Hursh & Silberberg (2008) and Koffarnus et al. (2015), respectively.

  • k can take accept a specific number but by default will be calculated based on the maximum and minimum y values of the entire sample and adding .5. Adding this amount was originally proposed by Steven R. Hursh in an early iteration of a Microsoft Excel spreadsheet used to calculate demand metrics. This adjustment was adopted for two reasons. First, when fitting $Q_0$ as a derived parameter, the value may exceed the empirically observed intensity value. Thus, a k value calculated based only on the observed range of data may underestimate the full fitted range of the curve. Second, we have found that values of $\alpha$ (as well as values that rely on $\alpha$, i.e. approximate $P_{max}$) display greater discrepancies when smaller values of k are used compared to larger values of k. Other options include "ind", which will calculate k based on individual basis, "fit", which will fit k as a free parameter on an individual basis, "share", which will fit k as a single shared parameter across all data sets (while fitting individual $Q_0$ and $\alpha$).

  • agg = NULL is the default, which means no aggregation. When agg = "Mean", models are fit to the averaged data disregarding any error. When agg = "Pooled", all data are used and clustering within individual is ignored.

  • detailed = FALSE is the default. This will output a single dataframe of results, as shown below. When detailed = TRUE, the output is a 3 element list that includes (1) dataframe of results, (2) list of nonlinear regression model objects, (3) list of dataframes containing predicted x and y values (to be used in subsequent plotting), and (4) list of individual dataframes used in fitting.

  • lobound and hibound can accept named vectors that will be used as lower and upper bounds, respectively during fitting. If k = "fit", then it should look as follows (values are nonspecific): lobound = c("q0" = 0, "k" = 0, "alpha" = 0) and hibound = c("q0" = 25, "k" = 10, "alpha" = 1). If k is not being fit as a parameter, then only "q0" and "alpha" should be used in bounding.

Note: Fitting with an equation (e.g., "linear", "hs") that doesn’t work happily with zero consumption values results in the following. One, a message will appear saying that zeros are incompatible with the equation. Two, because zeros are removed prior to finding empirical (i.e., observed) measures, resulting BP0 values will be all NAs (reflective of the data transformations). The warning message will look as follows:

Warning message:
Zeros found in data not compatible with equation! Dropping zeros!

The simplest use of FitCurves() is shown here, only needing to specify dat and equation. All other arguments shown are set to their default values.

FitCurves(dat = apt, equation = "hs", agg = NULL, detailed = FALSE, 
          xcol = "x", ycol = "y", idcol = "id", groupcol = NULL)

Which is equivalent to:

FitCurves(dat = apt, equation = "hs")

Note that this ouput returns a message (No k value specified. Defaulting to empirical mean range +.5) and the aforementioned warning (Warning message: Zeros found in data not compatible with equation! Dropping zeros!). With detailed = FALSE, the only output is the dataframe of results (broken up to show the different types of results). This example fits the exponential equation proposed by Hursh & Silberberg (2008):

idIntensityBP0BP1OmaxePmaxe
1910NA204515
303NA202020
384NA10217
6010NA10248
6810NA10369

Empirical Measures

EquationQ0dKAlphaR2
hs10.4757341.0314790.00465710.9660008
hs2.9324061.0314790.01345570.7922379
hs4.5231551.0314790.00879350.8662632
hs10.4921331.0314790.01022310.9664814
hs10.6517601.0314790.00612620.9699408

Fitted Measures

Q0seAlphaseNAbsSSSdResQ0LowQ0HighAlphaLowAlphaHigh
0.41595810.0002358160.01933540.03716329.58359311.3678760.00415150.0051628
0.25069460.0017321160.09783500.08359552.3947203.4700930.00974080.0171706
0.23576930.0008878140.02590830.04646534.0094585.0368530.00685920.0107277
0.62197240.0005118140.02366520.04440839.13697211.8472950.00910800.0113382
0.38410630.0002713140.01094390.03019929.81486511.4886560.00553500.0067173

Uncertainty and Model Information

EVOmaxdPmaxdOmaxa
2.049697745.4939414.39310847.84770
0.709419115.7458717.79622816.56052
1.085546524.0941817.65453125.34076
0.933741920.724816.54654721.79707
1.558189934.5847110.76089136.37405

Derived Measures

Here, the simplest form is shown specifying another equation, "koff". This fits the modified exponential equation proposed by Koffarnus et al. (2015):

FitCurves(dat = apt, equation = "koff")
idIntensityBP0BP1OmaxePmaxe
1910NA204515
303NA202020
3841510217
60101510248
68101510369

Empirical Measures

EquationQ0dKAlphaR2
koff10.1317671.4294190.00293190.9668576
koff2.9896131.4294190.00937160.8136932
koff4.6075511.4294190.00705620.8403625
koff10.3710881.4294190.00681270.9659117
koff10.7036271.4294190.00443610.9444897

Fitted Measures

Q0seAlphaseNAbsSSSdResQ0LowQ0HighAlphaLowAlphaHigh
0.24387290.0001663162.9082430.45577589.60871210.6548220.00257520.0032886
0.17212840.0013100161.4904540.32628372.6204343.3587920.00656200.0121812
0.30782310.0010631164.4299410.56251613.9473365.2677660.00477610.0093362
0.40693820.0004577165.0109820.59827039.49829211.2438840.00583100.0077945
0.46774670.0003736168.3508300.77232639.70041011.7068440.00363490.0052373

Uncertainty and Model Information

EVOmaxdPmaxdOmaxa
1.995781846.5662215.14090546.70800
0.624374114.5681016.05291514.61245
0.829262119.3486113.83393419.40752
0.858891520.039936.36558020.10095
1.319032330.776089.47214730.86979

Derived Measures

By specifying agg = "Mean", y values at each x value are aggregated and a single curve is fit to the data (disregarding error around each averaged point):

FitCurves(dat = apt, equation = "hs", agg = "Mean")
idIntensityBP0BP1OmaxePmaxe
mean6.8NA2023.17

Empirical Measures

EquationQ0dKAlphaR2
hs7.6374361.4294190.00668170.9807508

Fitted Measures

Q0seAlphaseNAbsSSSdResQ0LowQ0HighAlphaLowAlphaHigh
0.32589550.0002218160.021870.0395246.938468.3364130.00620590.0071574

Uncertainty and Model Information

EVOmaxdPmaxdOmaxa
0.87574220.433098.81358420.49531

Derived Measures

By specifying agg = "Pooled", y values at each x value are aggregated and a single curve is fit to the data and error around each averaged point (but disregarding within-subject clustering):

FitCurves(dat = apt, equation = "hs", agg = "Pooled")
idIntensityBP0BP1OmaxePmaxe
pooled6.8NA2023.17

Empirical Measures

EquationQ0dKAlphaR2
hs6.5924881.0314790.00850320.460412

Fitted Measures

Q0seAlphaseNAbsSSSdResQ0LowQ0HighAlphaLowAlphaHigh
0.42605070.00071251464.6778460.18023615.7503677.4346090.00709490.0099115

Uncertainty and Model Information

EVOmaxdPmaxdOmaxa
1.12260724.9167512.5264426.20589

Derived Measures

Share k Globally; Fit Other Parameters Locally

As mentioned earlier, in the function FitCurves, when k = "share" this parameter will be a shared parameter across all datasets (globally) while estimating $Q_0$ and $\alpha$ locally. While this works, it may take some time with larger sample sizes.

FitCurves(dat = apt, equation = "hs", k = "share")
idIntensityBP0BP1OmaxePmaxe
1910NA204515
303NA202020
384NA10217
6010NA10248
6810NA10369

Empirical Measures

EquationQ0dKAlphaR2
hs10.0145763.318330.00116160.9820968
hs2.7663133.318330.00333310.7641766
hs4.4858103.318330.00245800.8803145
hs9.7213793.318330.00242190.9705985
hs10.2931393.318330.00158790.9722310

Fitted Measures

Q0seAlphaseNAbsSSSdResQ0LowQ0HighAlphaLowAlphaHigh
0.24291500.0000308160.01018160.02696779.49357510.5355770.00109550.0012277
0.21927970.0003739160.11104900.08906222.2960053.2366210.00253120.0041350
0.20749900.0001963140.02318620.04395664.0337094.9379120.00203020.0028858
0.43710600.0000778140.02075840.04159168.76900610.6737510.00225230.0025914
0.31796710.0000523140.01011000.02902599.60034810.9859300.00147400.0017018

Uncertainty and Model Information

EVOmaxdPmaxdOmaxa
1.424186244.5516913.16054044.55206
0.496328115.5262416.60378515.52637
0.673039521.0541613.88478621.05433
0.683074621.368086.50249221.36826
1.041847432.591299.36689832.59155

Derived Measures

Compare Values of $\alpha$ and $Q_0$ via Extra Sum-of-Squares F-Test

When one has multiple groups, it may be beneficial to compare whether separate curves are preferred over a single curve. This is accomplished by the Extra Sum-of-Squares F-test. This function (using the argument compare) will determine whether a single $\alpha$ or a single $Q_0$ is better than multiple $\alpha$s or $Q_0$s. A single curve will be fit, the residual deviations calculated and those residuals are compared to residuals obtained from multiple curves. A resulting F statistic will be reporting along with a p value.

## setting the seed initializes the random number generator so results will be 
## reproducible
set.seed(1234)

## manufacture random grouping
apt$group <- NA
apt[apt$id %in% sample(unique(apt$id), length(unique(apt$id))/2), "group"] <- "a"
apt$group[is.na(apt$group)] <- "b"

## take a look at what the new groupings look like in long form
knitr::kable(apt[1:20, ])
idxygroup
190.010a
190.510a
191.010a
191.58a
192.08a
192.58a
193.07a
194.07a
195.07a
196.06a
197.06a
198.05a
199.05a
1910.04a
1915.03a
1920.02a
300.03b
300.53b
301.03b
301.53b
## in order for this to run, you will have had to run the code immediately
## preceeding (i.e., the code to generate the groups)
ef <- ExtraF(dat = apt, equation = "koff", k = 2, groupcol = "group", verbose = TRUE)
[1] "Null hypothesis: alpha same for all data sets"
[1] "Alternative hypothesis: alpha different for each data set"
[1] "Conclusion: fail to reject the null hypothesis"
[1] "F(1,156) = 0.0298, p = 0.8631"

A summary table (broken up here for ease of display) will be created when the option verbose = TRUE. This table can be accessed as the dfres object resulting from ExtraF. In the example above, we can access this summary table using ef$dfres:

GroupQ0dKR2Alpha
SharedNANANANA
a8.48963420.62064440.0040198
b5.84811920.62064440.0040198
Not SharedNANANANA
a8.50344220.64488010.0040518
b5.82207520.52428250.0039376

Fitted Measures

GroupNAbsSSSdRes
SharedNANANA
a160387.09451.570213
b160387.09451.570213
Not SharedNANANA
a80249.27641.787695
b80137.74401.328890

Uncertainty and Model Information

GroupEVOmaxdPmaxd
SharedNANANA
a0.879530122.631598.453799
b0.879530122.6315912.272265
Not SharedNANANA
a0.872574122.452608.373320
b0.897894523.1041412.584550

Derived Measures

GroupOmaxaNotes
SharedNANA
a22.63190converged
b22.63190converged
Not SharedNANA
a22.45291converged
b23.10445converged

Convergence and Summary Information

When verbose = TRUE, objects from the result can be used in subsequent graphing. The following code generates a plot of our two groups. We can use the predicted values already generated from the ExtraF function by accessing the newdat object. In the example above, we can access these predicted values using ef$newdat. Note that we keep the linear scaling of y given we used Koffarnus et al. (2015)’s equation fitted to the data.

## be sure that you've loaded the tidyverse package (e.g., library(tidyverse))
ggplot(apt, aes(x = x, y = y, group = group)) +
  ## the predicted lines from the sum of squares f-test can be used in subsequent
  ## plots by calling data = ef$newdat
  geom_line(aes(x = x, y = y, group = group, color = group), 
            data = ef$newdat[ef$newdat$x >= .1, ]) +
  stat_summary(fun.data = mean_se, aes(width = .05, color = group), 
               geom = "errorbar") +
  stat_summary(fun.y = mean, aes(fill = group), geom = "point", shape = 21, 
               color = "black", stroke = .75, size = 4) +
  scale_x_log10(limits = c(.4, 50), breaks = c(.1, 1, 10, 100)) +
  scale_color_discrete(name = "Group") +
  scale_fill_discrete(name = "Group") +
  labs(x = "Price per Drink", y = "Drinks Purchased") +
  theme(legend.position = c(.85, .75)) +
  ## theme_apa is a beezdemand function used to change the theme in accordance
  ## with American Psychological Association style
  theme_apa()

Plots

Plots can be created using the PlotCurves function. This function takes the output from FitCurves when the argument from FitCurves, detailed = TRUE. The default will be to save figures into a plots folder created one directory above the current working directory. Figures can be saved as either PNG or PDF. If the argument ask = TRUE, then plots will be shown interactively and not saved (ask = FALSE is the default). Graphs can automatically be created at both an aggregate and individual level.

As a demonstration, let’s first use FitCurves on the apt dataset, specifying k = "share" and detailed = T. This will return a list of objects to use in PlotCurves. In PlotCurves, we will feed in our new object, out, and tell the function to save the plots in the directory "../plots/" and ask = FALSE because we don’t want R to interactively show us each plot. Because we have 10 datasets in our apt example, 10 plots will be created and saved in the "../plots/" directory.

out <- FitCurves(dat = apt, equation = "hs", k = "share", detailed = T)
Warning: Zeros found in data not compatible with equation! Dropping zeros!

Beginning search for best-starting k

Best k fround at 0.93813356574003 = err: 0.744881846162718

Searching for shared K, this can take a while...
PlotCurves(dat = out, outdir = plotdir, device = "png", ask = F)
10 plots saved in man/figures/

We can also make a plot of the mean data. Here, we again use FitCurves, this time calculating a k from the observed range of the data (thus not specifying any k) and specifying agg = "Mean".

mn <- FitCurves(dat = apt, equation = "hs", agg = "Mean", detailed = T)
No k value specified. Defaulting to empirical mean range +.5
PlotCurves(dat = mn, outdir = plotdir, device = "png", ask = F)
1 plots saved in man/figures/
list.files("../plots/")
 [1] "Participant-106.png"  "Participant-113.png"  "Participant-142.png" 
 [4] "Participant-156.png"  "Participant-188.png"  "Participant-19.png"  
 [7] "Participant-30.png"   "Participant-38.png"   "Participant-60.png"  
[10] "Participant-68.png"   "Participant-mean.png"

Learn More About Functions

To learn more about a function and what arguments it takes, type “?” in front of the function name.

?CheckUnsystematic
CheckUnsystematic          package:beezdemand          R Documentation

Systematic Purchase Task Data Checker

Description:

     Applies Stein, Koffarnus, Snider, Quisenberry, & Bickels (2015)
     criteria for identification of nonsystematic purchase task data.

Usage:

     CheckUnsystematic(dat, deltaq = 0.025, bounce = 0.1, reversals = 0,
       ncons0 = 2)

Arguments:

     dat: Dataframe in long form. Colums are id, x, y.

  deltaq: Numeric vector of length equal to one. The criterion by which
          the relative change in quantity purchased will be compared.
          Relative changes in quantity purchased below this criterion
          will be flagged. Default value is 0.025.

  bounce: Numeric vector of length equal to one. The criterion by which
          the number of price-to-price increases in consumption that
          exceed 25% of initial consumption at the lowest price,
          expressed relative to the total number of price increments,
          will be compared. The relative number of price-to-price
          increases above this criterion will be flagged. Default value
          is 0.10.

reversals:Numeric vector of length equal to one. The criterion by
          which the number of reversals from number of consecutive (see
          ncons0) 0s will be compared. Number of reversals above this
          criterion will be flagged. Default value is 0.

  ncons0: Number of consecutive 0s prior to a positive value is used to
          flag for a reversal. Value can be either 1 (relatively more
          conservative) or 2 (default; as recommended by Stein et al.,
          (2015).

Details:

     This function applies the 3 criteria proposed by Stein et al.,
     (2015) for identification of nonsystematic purchase task data. The
     three criteria include trend (deltaq), bounce, and reversals from
     0. Also reports number of positive consumption values.

Value:

     Dataframe

Author(s):

     Brent Kaplan <[email protected]>

Examples:

     ## Using all default values
     CheckUnsystematic(apt, deltaq = 0.025, bounce = 0.10, reversals = 0, ncons0 = 2)
     ## Specifying just 1 zero to flag as reversal
     CheckUnsystematic(apt, deltaq = 0.025, bounce = 0.10, reversals = 0, ncons0 = 1)

Acknowledgments

  • Shawn P. Gilroy, Contributor GitHub

  • Derek D. Reed, Applied Behavioral Economics Laboratory

  • Mikhail N. Koffarnus, Addiction Recovery Research Center

  • Steven R. Hursh, Institutes for Behavior Resources, Inc.

  • Paul E. Johnson, Center for Research Methods and Data Analysis, University of Kansas

  • Peter G. Roma, Institutes for Behavior Resources, Inc.

  • W. Brady DeHart, Addiction Recovery Research Center

  • Michael Amlung, Cognitive Neuroscience of Addictions Laboratory

Special thanks to the following people who helped provide feedback on this document:

  • Alexandra M. Mellis

  • Mr. Jeremiah “Downtown Jimbo Brown” Brown

  • Gideon Naudé

Recommended Readings

  • Reed, D. D., Niileksela, C. R., & Kaplan, B. A. (2013). Behavioral economics: A tutorial for behavior analysts in practice. Behavior Analysis in Practice, 6 (1), 34–54. https://doi.org/10.1007/BF03391790

  • Reed, D. D., Kaplan, B. A., & Becirevic, A. (2015). Basic research on the behavioral economics of reinforcer value. In Autism Service Delivery (pp. 279-306). Springer New York. https://doi.org/10.1007/978-1-4939-2656-5_10

  • Hursh, S. R., & Silberberg, A. (2008). Economic demand and essential value. Psychological Review, 115 (1), 186-198. https://dx.doi.org/10.1037/0033-295X.115.1.186

  • Koffarnus, M. N., Franck, C. T., Stein, J. S., & Bickel, W. K. (2015). A modified exponential behavioral economic demand model to better describe consumption data. Experimental and Clinical Psychopharmacology, 23 (6), 504-512. https://dx.doi.org/10.1037/pha0000045

  • Stein, J. S., Koffarnus, M. N., Snider, S. E., Quisenberry, A. J., & Bickel, W. K. (2015). Identification and management of nonsystematic purchase task data: Toward best practice. Experimental and Clinical Psychopharmacology 23 (5), 377-386. https://dx.doi.org/10.1037/pha0000020

  • Hursh, S. R., Raslear, T. G., Shurtleff, D., Bauman, R., & Simmons, L. (1988). A cost‐benefit analysis of demand for food. Journal of the Experimental Analysis of Behavior, 50 (3), 419-440. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1338908/

Metadata

Version

0.1.2

License

Unknown

Platforms (75)

    Darwin
    FreeBSD
    Genode
    GHCJS
    Linux
    MMIXware
    NetBSD
    none
    OpenBSD
    Redox
    Solaris
    WASI
    Windows
Show all
  • aarch64-darwin
  • aarch64-genode
  • aarch64-linux
  • aarch64-netbsd
  • aarch64-none
  • aarch64_be-none
  • arm-none
  • armv5tel-linux
  • armv6l-linux
  • armv6l-netbsd
  • armv6l-none
  • armv7a-darwin
  • armv7a-linux
  • armv7a-netbsd
  • armv7l-linux
  • armv7l-netbsd
  • avr-none
  • i686-cygwin
  • i686-darwin
  • i686-freebsd
  • i686-genode
  • i686-linux
  • i686-netbsd
  • i686-none
  • i686-openbsd
  • i686-windows
  • javascript-ghcjs
  • loongarch64-linux
  • m68k-linux
  • m68k-netbsd
  • m68k-none
  • microblaze-linux
  • microblaze-none
  • microblazeel-linux
  • microblazeel-none
  • mips-linux
  • mips-none
  • mips64-linux
  • mips64-none
  • mips64el-linux
  • mipsel-linux
  • mipsel-netbsd
  • mmix-mmixware
  • msp430-none
  • or1k-none
  • powerpc-netbsd
  • powerpc-none
  • powerpc64-linux
  • powerpc64le-linux
  • powerpcle-none
  • riscv32-linux
  • riscv32-netbsd
  • riscv32-none
  • riscv64-linux
  • riscv64-netbsd
  • riscv64-none
  • rx-none
  • s390-linux
  • s390-none
  • s390x-linux
  • s390x-none
  • vc4-none
  • wasm32-wasi
  • wasm64-wasi
  • x86_64-cygwin
  • x86_64-darwin
  • x86_64-freebsd
  • x86_64-genode
  • x86_64-linux
  • x86_64-netbsd
  • x86_64-none
  • x86_64-openbsd
  • x86_64-redox
  • x86_64-solaris
  • x86_64-windows