2013-04-19-Elasticity

Table of Contents

1 Homework    slide

  • Find price elasticity
  • Data in code/price-elasticity.csv
  • Your choice of solving technology

2 Data    slide

DOWRoomsRate
1700$216.79
11020$201.64
11327$136.60
12087$118.10
1757$179.12
190$258.73
11489$136.37
1781$165.35
1209$287.84

3 Data meanings    slide

  • DOW: 1 == Sunday
  • Weekends are nights going into a weekend, ie Friday, Saturday, ie 6 & 7

4 Result    slide

  1. What is the price elasticity of weekday prices?
  2. What is the price elasticity of weekend prices?
  3. If we are currently forecast to be at 1000 rooms at $200 rate with 100 available capacity, what price should we set to optimize max revenue for both
    • Weekday
    • Weekend

5 Excel    slide

LN()
Options > Add-Ins > Analysis ToolPak > Go > ToolPak
Data Analysis > Regression > Y Range, X Range

6 Python    slide

from math import log, exp
from scipy.stats import linregress
slope, intercept, r_value, p_value, std_err = linregress(indep, depend)

Date: 2013-05-17 00:53:42 PDT

Author: Jim Blomo

Org version 7.8.02 with Emacs version 23

Validate XHTML 1.0