Skip to content

Commit

Permalink
Finalizing v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
max-alletsee committed Feb 24, 2024
1 parent 71f4c83 commit 6779403
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pricesensitivitymeter
Type: Package
Title: Van Westendorp Price Sensitivity Meter Analysis
Version: 1.2.3
Version: 1.3.0
Authors@R: person("Max", "Alletsee", email = "[email protected]",
role = c("aut", "cre"))
Maintainer: Max Alletsee <[email protected]>
Expand Down
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# pricesensitivitymeter, v1.2.3 (not yet released on CRAN)
# pricesensitivitymeter, v1.3.0 (release date: 2024-02-25)

- housekeeping: easier format for some input checks
- new parameter "acceptable_range": allows to switch between van Westendorp's original definition of acceptable price ranges and a narrower definition which is used by some market research companies
- new parameters "pi_calibrated_toocheap" and "pi_calibrated_tooexpensive" for functions psm_analysis() and psm_analysis_weighted(): allows to specify a calibrated purchase probability at the "too cheap" and "too expensive" price, respectively, which is different from zero
- consistency: renames "trial" to "reach"

# pricesensitivitymeter, v1.2.2 (release date: 2021-10-19)

Expand Down
2 changes: 1 addition & 1 deletion vignettes/visualizing-psm-results.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pi_cheap <- sample(x = c(1:5), size = length(cheap),
pi_expensive <- sample(x = c(1:5), size = length(expensive),
replace = TRUE, prob = c(0.3, 0.3, 0.2, 0.1, 0.1))
data.psm <- data.frame(toocheap, cheap, expensive, tooexpensive,
data_psm <- data.frame(toocheap, cheap, expensive, tooexpensive,
pi_cheap, pi_expensive)
output_psm <- psm_analysis(toocheap = "toocheap",
Expand Down

0 comments on commit 6779403

Please sign in to comment.