Online Appendix for Inventory and Shipment Policies for the Online Movie DVD Rental Industry

Size: px
Start display at page:

Download "Online Appendix for Inventory and Shipment Policies for the Online Movie DVD Rental Industry"

Transcription

1 Online Appendix for Inventory and Shipment Policies for the Online Movie DVD Rental Industry Kyung Sung Jung, Casey Chung, Shun-Chen Niu, Chelliah Sriskandarajah A. SAS Programs In this section, we provide the data and program files that are used to validate our demand formulation. The particular title used in this example is Julie. The data file and a list of our SAS codes are described in Sections A.1 and A.2, respectively. A detailed explanation of the code is provided in Section A.3. A.1. Data File Let the name of data file be Julie.txt. First, these data in Julie.txt file need to be read (in lines 1 3 in Section A.2). The columns t, Queue, Shipment, and Exchange in Table A.1 are used in this SAS program, where t is an index of each period (namely, obs ); Queue is the queue size; Shipment is the shipment counts and Exchange is the exchange counts in period t. Period t Queue, q t Shipment, s t Exchange, c t Remark Street date Weekend Weekend Weekend Weekend Table A.1 The data set of Julie

2 A.2. SAS Code for demand formulation Let the name of SAS program be Julie PDM.sas. Our program can be divided into three parts: Lines 1 3 for input of the data; Lines 6 9 for the NLP procedure; and the remaining lines for formulating our demand function described in Section 2. The numbers of lines are added only for the references for programming explanation in Section A.3. 1 data dvd.sbm; 66 if obs >= 2 and obs <= 9 then 2 infile c:\dataset\julie.txt firstobs = 2; 67 do ; 3 input queue ship exchange; run; 68 Q1t = oldq1t + OldINC1t; Q2t = ; 4 proc print data=dvd.sbm; run; 69 Qt = Q1t + Q2t; 5 7 VQt = oldvinct; 6 proc nlp outall data=dvd.sbm maxit=3 maxfu= outest=mle tech=quanew out=vars MSING=1e alphat = oldalphat + beta *oldinct/(m-1); 8 GCONV=1e-12 FDH=central FDInt=obj covariance=1 73 rt = oldrt - oldinct; 9 pcov phes pall; INC1t = rt * (1-exp(-alphat)) * gamma; INC2t = ; 11 max ln likelihood ; 76 INCt = INC1t + INC2t; VINCt = INCt*(1-(1-exp(-alpha1)) * gamma); 13 parms pi =.65837, gamma = , alpha = , beta = , eta =.57467, tau =, theta = , 79 E1t = ; E2t = ; 15 omega = , d1= , d2= ; 8 Et = E1t + E2t; bounds < pi <= 1, < gamma <= 1, < alpha <= 5, 82 FitQt = Qt; 18 < beta <= 5, < d1 <= 5, < eta <= 5, 83 DevQt = Queue - FitQt; 19 < tau <= 1, < d2 <= 5, 1 < theta <= 5, 84 StdQt = (VQt + d1**2)**.5; 2 < omega <= 5; 85 LNStdQt = (1/2)*Log(VQt + d1**2); 21 nlincon E1t >=., E2t >=. /EVERYOBS; LNStdEt = ; objrho = ; 23 g = 1; m = 25; 88 objrhoq = (DevQt/StdQt)**2/2; 24 Q11= 2497; Q21 = ; 89 objrhoqe = ; objrhoe = ; 25 Q1 = Q11 + Q21; 9 26 VQ1 = ; 91 oldq1t = Q1t; oldrt = rt; oldalphat = alphat; OldINC1t = INC1t; 28 alpha1 = alpha + beta*q1/(m-1); 93 oldet = Et; oldinct = INCt; 29 r1 = m*pi - Q1; 94 olde2t = E2t; oldvinct = VINCt; 3 95 olde1t = E1t; 31 INC11 = r1 * (1-exp(-alpha1)) * gamma; INC21 = ; 96 end ; 32 INC1 = INC11 + INC21; VINC1 = INC1*(1-(1-exp(-alpha1)) * gamma); 98 if obs = 1 then do ; 35 if obs = 1 then 1 Q1t = oldq1t + OldINC1t; Q2t = ; 36 do ; 11 Qt = Q1t + Q2t; 37 Q1t = Q11 + INC11; Q2t = ; 12 VQt = oldvinct; 38 Qt = Q1t + Q2t; 13 FQt = Q1t / Qt; 39 VQt = VINC1; alphat = oldalphat + beta *oldinct/(m-1); 41 alphat = alpha1 + beta *INC1/(m-1); 16 rt = oldrt - oldinct; 42 rt = r1 - INC1; INC1t = rt * (1-exp(-alphat)) * gamma; 44 INC1t = rt * (1-exp(-alphat)) * gamma; INC2t = ; 19 INC2t = rt * (1-exp(-alphat)) *(1-gamma); 45 INCt = INC1t + INC2t; 11 INCt = INC1t + INC2t; 46 VINCt = INCt*(1-(1-exp(-alpha1)) * gamma); 111 VINCt = INCt*exp(-alphat); E1t = ; E2t = ; 113 mship = min(ship,g*qt); 49 Et = E1t + E2t; 114 edft = exp(-tau*( obs - 1))* eta; E1t = (Q1t-mship*FQt)*(1-exp(-edft)); E2t = ; 51 FitQt = Qt; 116 Et = E1t + E2t; 52 DevQt = Queue - FitQt; 117 VE1t = E1t * exp(-edft); VE2t = ; 53 StdQt = (VQt + d1**2)**.5; 118 VEt = VE1t + VE2t; 54 LNStdQt = (1/2)*Log(VQt + d1**2); Wt = ; VEWt = ; 56 LNStdEt = ; objrho = ; objrhoq = (DevQt/StdQt)**2/2; 122 FitQt = Qt; 58 objrhoqe = ; objrhoe = ; 123 DevQt = Queue - FitQt; StdQt = (VQt + d1**2)**.5; 6 oldq1t = Q1t; oldrt = rt; 125 LNStdQt = (1/2)*Log(VQt + d1**2); 61 oldalphat = alphat; OldINC1t = INC1t; oldet = Et; oldinct = INCt; 127 FitEt = Et; 63 olde2t = E2t; oldvinct = VINCt; 128 DevEt = Exchange - FitEt; 64 olde1t = E1t; 129 StdEt = (VEt + d2**2)**.5; 65 end ; 13 covewt = ;

3 131 LNStdEt = ; objrho = ; 213 if ( obs >= 14 and obs <= 15) or 132 objrhoq = (DevQt/StdQt)**2/2; 214 ( obs >= 21 and obs <= 22) then 133 objrhoqe = ; objrhoe = ; 215 do; Q1t = oldq1t + OldINC1t - oldmship*oldfqt - olde1t; 135 oldq1t = Q1t; oldqt = Qt; 217 Q2t=oldQ2t+OldINC2t-oldmship*(1-oldFQt)-oldE2t-oldWt; 136 oldrt = rt; oldalphat = alphat; 218 Qt = Q1t + Q2t; 137 OldINC1t = INC1t; oldinct = INCt; oldvinct = VINCt; oldve1t = VE1t; 22 VQt = oldvinct + oldve1t + oldvewt; 139 oldvet = VEt; oldvewt = VEWt; 221 FQt = Q1t / Qt; 14 olddevet = DevEt; oldstdet = StdEt; oldet = Et; olde1t = E1t; 223 alphat = oldalphat + beta *(oldinct-oldwt)/(m-1); 142 olde2t = E2t; oldmship = mship; 224 rt = oldrt - oldinct + oldwt; 143 oldwt = Wt; oldfqt = FQt; oldcovewt = covewt; oldq2t = Q2t; 226 INC1t = rt * (1-exp(-alphat)) * gamma; 145 oldinc2t = INC2t; 227 INC2t = rt * (1-exp(-alphat)) *(1-gamma); 146 end; 228 INCt = INC1t + INC2t; VINCt = INCt*exp(-alphat); 148 if ( obs >= 11 and obs <= 13) or ( obs >= 16 and obs <= 2) or 231 mship = min(ship,g*qt); 15 ( obs >= 23 and obs <= 24) then 232 edft = exp(-tau*( obs - 1))*eta*theta; 151 do ; 233 E1t = (Q1t-mship*FQt)*(1-exp(-edft)); 152 Q1t = oldq1t + OldINC1t - oldmship * oldfqt - olde1t; 234 E2t = (Q2t-mship*(1-FQt))*(1-exp(-(edft+omega))) 153 Q2t=oldQ2t+OldINC2t-oldmship*(1-oldFQt)-oldE2t-oldWt; 235 *edft/(edft*omega); 154 Qt = Q1t + Q2t; 236 Et = E1t + E2t; 155 VQt = oldvinct + oldve1t + oldvewt; FQt = Q1t / Qt; 238 VE1t = E1t * exp(-edft); VE2t = E2t*(1-(1-exp(-(edft+omega))) 158 alphat = oldalphat + beta *(oldinct-oldwt)/(m-1); 24 *edft*theta/(edft+omega); 159 rt = oldrt - oldinct + oldwt; 241 VEt = VE1t + VE2t; Wt = (Q2t - mship*(1-fqt))*(1-exp(-(edft+omega))) 161 INC1t = rt * (1-exp(-alphat)) * gamma; 243 *omega/(edft+omega); 162 INC2t = rt * (1-exp(-alphat)) *(1-gamma); 244 VEWt = (E2t+Wt)*exp(-(edft+omega)); 163 INCt = INC1t + INC2t; FitQt = Qt; 165 VINCt = INCt*exp(-alphat); 247 DevQt = Queue - FitQt; StdQt = (VQt + d1**2 + d2**2)**.5; 167 mship = min(ship,g*qt); 249 LNStdQt = (1/2)*Log(VQt + d1**2 + d2**2); 168 edft = exp(-tau*( obs - 1))* eta; E1t = (Q1t-mship*FQt)*(1-exp(-edft)); 251 FitEt = Et; 17 E2t = (Q2t-mship*(1-FQt))*(1-exp(-(edft+omega))) 252 DevEt = Exchange - FitEt; 171 *edft/(edft+omega); 253 StdEt = (VEt + d2**2)**.5; 172 Et = E1t + E2t; 254 LNStdEt = (1/2)*Log(oldVEt + d2**2); VE1t = E1t * exp(-edft); 256 covewt = -Wt*(1-exp(-(edft+omega)))*edft/(edft+omega); 175 VE2t= E2t * (1-(1-exp(-(edft+omega))) 257 CovQEt = - oldvet - oldcovewt; 176 *edft/(edft+omega)); 258 rhot = CovQEt / (StdQt*oldStdEt); 177 VEt = VE1t + VE2t; Wt = (Q2t-mship*(1-FQt))*(1-exp(-(edft+omega))) 26 objrho = (1/2)*Log(1-rhot**2); 179 *omega/(edft+omega); 261 objrhoe = (olddevet/oldstdet)**2/(2*(1-rhot**2)); 18 VEWt = (E2t+Wt)*exp(-(edft+omega)); 262 objrhoqe=(rhot)/((1-rhot**2)*stdqt*oldstdet) *DevQt*oldDevEt; 182 FitQt = Qt; 264 objrhoq = (DevQt/StdQt)**2/(2*(1-rhot**2)); 183 DevQt = Queue - FitQt; StdQt = (VQt + d1**2 + d2**2)**.5; 266 oldqt = Qt; oldalphat = alphat; oldrt = rt; 185 LNStdQt = (1/2)*Log(VQt + d1**2 + d2**2); 267 oldq1t = Q1t; OldINC1t = INC1t; oldinct = INCt; oldq2t = Q2t; oldvinct = VINCt; oldvet = VEt; 187 FitEt = Et; 269 oldet = Et; oldvewt = VEWt; oldstdet = StdEt; 188 DevEt = Exchange - FitEt; 27 olde1t = E1t; oldmship = mship; oldcovewt = covewt; 189 StdEt = (VEt + d2**2)**.5; 271 olde2t = E2t; oldve1t = VE1t; oldfqt = FQt; 19 LNStdEt = (1/2)*Log(oldVEt + d2**2); 272 oldwt = Wt; olddevet = DevEt; oldinc2t = INC2t; end; 192 covewt = -Wt * (1-exp(-(edft+omega)))*edft/(edft+omega); CovQEt = - oldvet - oldcovewt; 275 retain Q1t; retain oldq1t; retain VEWt; 194 rhot = CovQEt / (StdQt*oldStdEt); 276 retain Q2t ; retain oldq2t ; retain VEt; retain Qt; retain oldqt; retain DevEt; 196 objrho = (1/2)*Log(1-rhot**2); 278 retain FQt; retain oldfqt; retain StdEt; 197 objrhoe = (olddevet/oldstdet)**2/(2*(1-rhot**2)); 279 retain rt; retain oldrt; retain Wt; 198 objrhoqe=(rhot*devqt*olddevet)/((1-rhot**2)*stdqt*oldstdet); 199 objrhoq = (DevQt/StdQt)**2/(2*(1-rhot**2)); 28 retain alphat; retain oldalphat; retain covewt; retain INC1t ; retain oldinc1t; retain mship; 21 oldq1t = Q1t; oldqt = Qt; 282 retain INC2t; retain oldinc2t; retain oldvewt; 22 oldrt = rt; oldalphat = alphat; 283 retain INCt ; retain oldinct; etain oldvet; 23 OldINC1t = INC1t; oldinct = INCt; 284 retain VINCt; retain oldvinct; retain olddevet; 24 oldvinct = VINCt; oldve1t = VE1t; 285 retain E1t; retain olde1t; retain oldstdet; 25 oldvet = VEt; oldvewt = VEWt; 286 retain E2t; retain olde2t; retain oldwt; 26 olddevet = DevEt; oldstdet = StdEt; 287 retain Et; retain oldet; retain oldcovewt; 27 oldet = Et; olde1t = E1t; 288 retain VE1t; retain oldve1t; retain oldmship; 28 olde2t = E2t; oldmship = mship; oldwt = Wt; oldfqt = FQt; 29 ln likelihood =-LNStdQt-LNStdEt-objrho 21 oldcovewt = covewt; oldq2t = Q2t; 291 -objrhoq+objrhoqe-objrhoe; 211 oldinc2t = INC2t; 292 run ; 212 end; 293

4 A.3. Explanation of the SAS Code Lines 1-3: Lines 6-9: Line 11: Input the data from the external file. Call non-linear programming procedure (proc nlp). Define the objective function. The variable ln likelihood is maximized. Lines 13-2: Set the initial value of ten parameters π, γ, α, β, η, τ, θ, ω, δ 1 and δ 2. Table A.2 represents the initial values of each parameter, which are based on the output from a separate Excel program by using Evolutionary Solver. In addition, set reasonable ranges for the parameters. Parameter L.B. Initial Value U.B. Parameter L.B. Initial Value U.B. π γ α β η τ 1 θ ω δ δ L.B.: Lower Bound, U.B.: Upper Bound Table A.2 The initial values and the ranges of each parameter Julie and Julia Line 21: Impose all exchanges (E[C H t ] and E[C L t ]) designated as E1t and E2t on non-negative constraints. Lines 23-26: Define the initial input data g, m, E[Q 1 ], E[Q H 1] and E[Q L 1]. (E[Q 1 ], E[Q H 1], E[Q L 1]) are designated as (Q1, Q11, Q21). E[Q 1 ] is presumably given by E[Q 1 ] = q 1, i.e., (E[Q H 1], E[Q L 1]) = (q 1, ) in Table A.1. V[Q 1 ] designated as V Q1 is. Lines 28-29: Compute r 1 and α 1 designated as r1 and alpha1; see (7a), (8a). Lines 31-32: Compute (E[J 1 ], E[J 1], H E[J 1]) L designated as (INC1, INC11, INC21); see (9) (11). Line 33: Compute V[J 1 ] designated as VINC1; see (19). Lines 35-65: In order to implement SAS program easily, it is necessary to have a section during period t = 9 (i.e., obs = 1) separately. The detailed explanation is: Lines 37-38: Compute (E[Q 9 ], E[Q H 9], E[Q L 9]) designated as (Qt, Q1t, Q2t); see (5b), (6a). Line 39: Compute V[Q H 9 + Q L 9] designated as VQt; see (18). Lines 41-42: Compute r 9 and α 9 designated as rt and alphat; see (7b), (8b). Lines 44-46: Compute (E[J 9 ], E[J 9], H E[J 9]) L and V[J 9 ] designated as (INCt, INC1t, INC2t) and VINCt; see (9), (1), (11). Lines 48-49: Compute (E[C t ], E[C H t ], E[C L t ]) designated as (Et, E1t, E2t); see (13), (14). Lines 51-54: Compute V [Q t ] (in (18)) and the first term of objective function (in (32)) designated as stdqt and LNStdQt. Lines 56-58: Compute other elements of objective function. Lines 66-96: The logic from periods 8 (i.e. obs = 2) to 1 (i.e. obs = 9) is similar to that for period 1. We will illustrate the only differences: Line 68: Replace Q11 and INC11 with oldq1t and oldinct in Line 37. Line 7: Replace VINC1 with oldvinct in Lines 39.

5 Line 72: Replace alpha1 and INC1 with oldalphat and oldinct in Lines 41. Line 73: Replace r1 and INC11 with oldrt and oldinct in Lines 42. Lines : The logic during period (i.e., obs =1, street date) is similar to that for previous periods except for actions related to shipments and exchanges. We will illustrate the only differences: Line 13: Compute the fraction of shipment for Type-H subscribers based on the number of subscribers in the queue. Note that FQt = 1 during period t =. Line 114: Compute the discount factor (ηe τt ). Lines : Compute (V[C H t + C L t ], V[C H t ], V[C L t ]) designated as VEt, VE1t, and VE2t; see (29), (21), (27). Lines : Compute V [C t ] designated as StdEt for the next period (in Line 194); see (29). Lines : The logic during weekday (i.e. obs = 11, 12, 13, 16, 17, 18, 19, 2, 23, 24) is similar to that for previous periods except for actions related to withdrawals. The only differences will be illustrated: Line 152: Subtract two components (i.e., shipment sizes and exchange counts during the previous period) from Line 1; see (5c). Line 153: Compute E[Q L t ] designated as Q2t; see (6b). Line 17: Compute E[C L t ] designated as E2t; see (14). Line 175: Compute V [Ct L ] designated VE2t; see (27). Lines : Compute E[W t ] and V[C L t + W t ] designated as Wt and VEWt; see (15), (22). Line 192: Compute Cov[C L t, W t ] designated as covewt; see (28). Line 193: Compute Cov[C t, Q t+1 ] designated as CovQEt; see (26). Line 194: Compute ˆρ(t) designated as rhot; see (3). Lines : Compute other elements of objective function. Lines : The logic during weekend (i.e. obs = 14, 15, 21, 22) is similar to that for weekday except for discount factor. We will illustrate the only differences: Line 232: Replace (ηe τt ) with (θηe τt ) in Line 114. Lines : Compute the objective function; see (32). SAS will accumulate ln likelihood for all periods. B. Additional Empirical Results In this section, we provide additional empirical results in order to support Section 2.4 in the main paper. We provide a brief summary of the model fit for two additional titles: HP and Accidental. Recall that the test results for these two titles are reported in Table 3. For HP, the model fits are plotted in Figures B.1(a) and B.1(b). The fitted trajectories are somewhat similar to those for previous examples represented in Section 2.4. For this title, the two R 2 values are very high,.9772 for the queue sizes and.8496 for the exchange counts. Both sets of Z-scores are quite even, displayed in Figures B.1(c) and B.1(d).

6 2 Actual vs Fitted Queue Sizes 5 Actual vs Fitted Exchange Counts Queue size Exchange count Period Period Actual Fitted Actual Fitted (a) Z-Scores for Queue Sizes 4 2 (b) Z-Scores for Exchange Counts (c) Figure B.1-4 Fitted curves and Z-scores for HP. (d) For Accidental, the fitted queue sizes and exchange counts over time are plotted in Figures B.2(a) and B.2(b). Similar to other examples, our model produced excellent R 2 values,.9648 for the queue sizes and.7649 for exchange counts respectively. The corresponding Z-scores, represented in Figures B.2(c) and B.2(d), are also good. 7 Actual vs Fitted Queue Sizes 25 Actual vs Fitted Exchange Counts 6 2 Queue size Exchange count Period Period Actual Fitted Actual Fitted 4 2 (a) Z-Scores for Queue Sizes 4 2 (b) Z-Scores for Exchange Counts (c) Figure B.2-4 (d) Fitted curves and Z-scores for Accidental.

7 C. Mathematical Formulation We provide here the complete formulation of Problem Γ in Section 3.1. Given E[Q H ], E[Q L ] = E[W ] =, r, α, service level (c), and all other parameters, our objective is to minimize the initial order quantity I subject to constraints on inventory levels and shipment levels as dictated by the corresponding demand trajectory. Minimize I subject to I 1 = I S, t 1 I t = I t 1 S t 1 + f i S t 2 (i 1), t = 2, 3,..., 14 i=1 S t I t, t =, 1,..., 14 S t ge[q t ], t =, 1,..., t= S = S H S t = S H t + S L t, t = 1, 2, 3, 6, 7,... 1, 13, 14 S t =, t = 4, 5, 11, 12 S t cmπ, E[Q t ] = E[Q H t ] + E[Q L t ], t =, 1,..., 14 E[Q H t ] = E[Q H t 1] S H t 1 + E[J H t 1], t = 1, 2,..., 14 E[Q L t ] = E[Q L t 1] S L t 1 + E[J L t 1] E[W t 1 ], t = 1, 2,..., 14, E[Q H S H t ] t = S t, E[Q H t ] + E[Q L t ] t = 1, 2,..., 14 E[Q L S L t ] t = S t, E[Q H t ] + E[Q L t ] t = 1, 2,..., 14 E[J t ] = E[J H t ] + E[J L t ], t =, 1,..., 14 E[J H t ] = r t (1 e α t )γ, t =, 1,..., 14 E[J L t ] = r t (1 e α t )(1 γ), t =, 1,..., 14, r t = r t 1 E[J t 1 ] + E[W t 1 ], t = 2, 3,..., 14 α t = α t 1 + β m 1 (E[J t 1] E[W t 1 ]), t = 2, 3,..., 14 E[W t ] = (E[Q L t ] S L t )(1 e ω ), t = 1, 2,..., 14 I t, S t, S H t, S L t, t =, 1,..., 14

8 D. General Information at Blockbuster The locations of these Blockbuster regional Distribution Centers (DCs) and their subscriber bases are shown in Table D.1. In this table Subs % refers to the percentage of the overall subscribers serviced by each regional DC. Subscribers are assigned to a primary regional DC based on the proximity of the subscriber to the DC (Chung 21). DC City State Subs % Ship % DC City State Subs % Ship % 1 Dallas TX Phoenix AZ Santa Ana CA St Louis MO College Pt NY San Jose CA Charlotte NC Rochester NY Seattle WA Pittsburgh PA Sacramento CA Louisville KY Minneapolis MN Portland OR Miami FL Las Vegas NV Lansing MI Kansas City MO Denver CO Baton Rouge LA Worcester MA Richmond VA Gaithersburg MD South Daytona FL Atlanta GA Salt Lake City UT Houston TX Indianapolis IN Philadelphia PA San Antonio TX Cleveland OH Des Moines IA Tampa FL Pensacola FL Edison NJ Tulsa OK Chicago IL Aiea HI.58.7 Subs %: Subscriber %, Ship %: Shipment% Table D.1 Percent of subscribers and shipment based on DC location

NAWIC. National Association of Women in Construction. Membership Report. August 2009

NAWIC. National Association of Women in Construction. Membership Report. August 2009 NAWIC National Association of Women in Construction Membership Report August 2009 Core Purpose: To enhance the success of women in the construction industry Region 1 67 Gr Washington, DC 9 16 2 3 1 0 0

More information

Online Appendix A Sales Forecast Model for Short-Life-Cycle Products: New Releases at Blockbuster

Online Appendix A Sales Forecast Model for Short-Life-Cycle Products: New Releases at Blockbuster Online Appendix A Sales Forecast Model for Short-Life-Cycle Products: New Releases at Blockbuster Casey Chung Gap Inc. Direct 2225 South 75th Ave, Suite 1, Phoenix, Arizona 8543 casey.chung@gap.com Shun-Chen

More information

Vibrancy and Property Performance of Major U.S. Employment Centers. Appendix A

Vibrancy and Property Performance of Major U.S. Employment Centers. Appendix A Appendix A DOWNTOWN VIBRANCY SCORES Atlanta 103.3 Minneapolis 152.8 Austin 112.3 Nashville 83.5 Baltimore 151.3 New Orleans 124.3 Birmingham 59.3 New York Midtown 448.6 Charlotte 94.1 Oakland 157.7 Chicago

More information

North American Geography. Lesson 5: Barnstorm Like a Tennis Player!

North American Geography. Lesson 5: Barnstorm Like a Tennis Player! North American Geography Lesson 5: Barnstorm Like a Tennis Player! Unit Overview: As students work through the activities in this unit they will be introduced to the United States in general, different

More information

Hotel Industry Overview. UPDATE: Trends and outlook for Northern California. Vail R. Brown

Hotel Industry Overview. UPDATE: Trends and outlook for Northern California. Vail R. Brown Hotel Industry Overview UPDATE: Trends and outlook for Northern California Vail R. Brown Senior Vice President, Global Business Development & Marketing vbrown@str.com @vail_str 2016 STR, Inc. All Rights

More information

Authors: Antonella Zanobetti and Joel Schwartz

Authors: Antonella Zanobetti and Joel Schwartz Title: Mortality Displacement in the Association of Ozone with Mortality: An Analysis of 48 US Cities Authors: Antonella Zanobetti and Joel Schwartz ONLINE DATA SUPPLEMENT Additional Information on Materials

More information

Lesson 1 - Pre-Visit Safe at Home: Location, Place, and Baseball

Lesson 1 - Pre-Visit Safe at Home: Location, Place, and Baseball Lesson 1 - Pre-Visit Safe at Home: Location, Place, and Baseball Objective: Students will be able to: Define location and place, two of the five themes of geography. Give reasons for the use of latitude

More information

Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables

Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables Table of Contents Table 1: Summary of Life Safety Survey Results by State Table 2: Ten Most Frequently Cited Life Safety

More information

Lecture 26 Section 8.4. Mon, Oct 13, 2008

Lecture 26 Section 8.4. Mon, Oct 13, 2008 Lecture 26 Section 8.4 Hampden-Sydney College Mon, Oct 13, 2008 Outline 1 2 3 4 Exercise 8.12, page 528. Suppose that 60% of all students at a large university access course information using the Internet.

More information

2/25/2019. Taking the northern and southern hemispheres together, on average the world s population lives 24 degrees from the equator.

2/25/2019. Taking the northern and southern hemispheres together, on average the world s population lives 24 degrees from the equator. Where is the world s population? Roughly 88 percent of the world s population lives in the Northern Hemisphere, with about half north of 27 degrees north Taking the northern and southern hemispheres together,

More information

Your Galactic Address

Your Galactic Address How Big is the Universe? Usually you think of your address as only three or four lines long: your name, street, city, and state. But to address a letter to a friend in a distant galaxy, you have to specify

More information

JUPITER MILLER BUSINESS CENTER 746,400 SF FOR LEASE

JUPITER MILLER BUSINESS CENTER 746,400 SF FOR LEASE 746,400 SF FOR LEASE Three LEED Certified Cross-Dock Buildings 54,600 Square Feet to 746,400 Square Feet Available Dallas City of Tax Incentives Available 36 Clear Height (Over 25% More Pallet Positions

More information

Research Update: Race and Male Joblessness in Milwaukee: 2008

Research Update: Race and Male Joblessness in Milwaukee: 2008 Research Update: Race and Male Joblessness in Milwaukee: 2008 by: Marc V. Levine University of Wisconsin Milwaukee Center for Economic Development Briefing Paper September 2009 Overview Over the past decade,

More information

Speed. June Victor Couture (U. Toronto) Gilles Duranton (U. Toronto) Matt Turner (U. Toronto)

Speed. June Victor Couture (U. Toronto) Gilles Duranton (U. Toronto) Matt Turner (U. Toronto) Speed June 2012 Victor Couture (U. Toronto) Gilles Duranton (U. Toronto) Matt Turner (U. Toronto) Objectives: Assess differences in driving speed across us metropolitan areas Explore their determinants

More information

EXST 7015 Fall 2014 Lab 08: Polynomial Regression

EXST 7015 Fall 2014 Lab 08: Polynomial Regression EXST 7015 Fall 2014 Lab 08: Polynomial Regression OBJECTIVES Polynomial regression is a statistical modeling technique to fit the curvilinear data that either shows a maximum or a minimum in the curve,

More information

Sample Statistics 5021 First Midterm Examination with solutions

Sample Statistics 5021 First Midterm Examination with solutions THE UNIVERSITY OF MINNESOTA Statistics 5021 February 12, 2003 Sample First Midterm Examination (with solutions) 1. Baseball pitcher Nolan Ryan played in 20 games or more in the 24 seasons from 1968 through

More information

Annual Performance Report: State Assessment Data

Annual Performance Report: State Assessment Data Annual Performance Report: 2005-2006 State Assessment Data Summary Prepared by: Martha Thurlow, Jason Altman, Damien Cormier, and Ross Moen National Center on Educational Outcomes (NCEO) April, 2008 The

More information

Chapter 4: Displaying and Summarizing Quantitative Data

Chapter 4: Displaying and Summarizing Quantitative Data Chapter 4: Displaying and Summarizing Quantitative Data This chapter discusses methods of displaying quantitative data. The objective is describe the distribution of the data. The figure below shows three

More information

C Further Concepts in Statistics

C Further Concepts in Statistics Appendix C.1 Representing Data and Linear Modeling C1 C Further Concepts in Statistics C.1 Representing Data and Linear Modeling Use stem-and-leaf plots to organize and compare sets of data. Use histograms

More information

Analyzing Severe Weather Data

Analyzing Severe Weather Data Chapter Weather Patterns and Severe Storms Investigation A Analyzing Severe Weather Data Introduction Tornadoes are violent windstorms associated with severe thunderstorms. Meteorologists carefully monitor

More information

Use your text to define the following term. Use the terms to label the figure below. Define the following term.

Use your text to define the following term. Use the terms to label the figure below. Define the following term. Mapping Our World Section. and Longitude Skim Section of your text. Write three questions that come to mind from reading the headings and the illustration captions.. Responses may include questions about

More information

SAMPLE AUDIT FORMAT. Pre Audit Notification Letter Draft. Dear Registrant:

SAMPLE AUDIT FORMAT. Pre Audit Notification Letter Draft. Dear Registrant: Pre Audit Notification Letter Draft Dear Registrant: The Pennsylvania Department of Transportation (PennDOT) is a member of the Federally Mandated International Registration Plan (IRP). As part of this

More information

HI SUMMER WORK

HI SUMMER WORK HI-201 2018-2019 SUMMER WORK This packet belongs to: Dear Dual Enrollment Student, May 7 th, 2018 Dual Enrollment United States History is a challenging adventure. Though the year holds countless hours

More information

Smart Magnets for Smart Product Design: Advanced Topics

Smart Magnets for Smart Product Design: Advanced Topics Smart Magnets for Smart Product Design: Advanced Topics Today s Presenter Jason Morgan Vice President Engineering Correlated Magnetics Research 6 Agenda Brief overview of Correlated Magnetics Research

More information

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984.

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 984. y ˆ = a + b x + b 2 x 2K + b n x n where n is the number of variables Example: In an earlier bivariate

More information

Multi-Dimensional Geometric Complexity in Urban Transportation Systems

Multi-Dimensional Geometric Complexity in Urban Transportation Systems Multi-Dimensional Geometric Complexity in Urban Transportation Systems Farideddin Peiravian a,1 and Sybil Derrible a a University of Illinois at Chicago, Complex and Sustainable Urban Networks (CSUN) Lab,

More information

What Lies Beneath: A Sub- National Look at Okun s Law for the United States.

What Lies Beneath: A Sub- National Look at Okun s Law for the United States. What Lies Beneath: A Sub- National Look at Okun s Law for the United States. Nathalie Gonzalez Prieto International Monetary Fund Global Labor Markets Workshop Paris, September 1-2, 2016 What the paper

More information

Transferability of Household Travel Data Across Geographic Areas Using NHTS 2001

Transferability of Household Travel Data Across Geographic Areas Using NHTS 2001 Transferability of Household Travel Data Across Geographic Areas Using NHTS 2001 Jane Lin PhD Assistant Professor Department of Civil and Materials Engineering Institute for Environmental Science and Policy

More information

ASSOCIATION OF SCIENCE MUSEUM DIRECTORS OFFICER INFORMATION FROM INCEPTION IN 1959 TO TODAY

ASSOCIATION OF SCIENCE MUSEUM DIRECTORS OFFICER INFORMATION FROM INCEPTION IN 1959 TO TODAY ASSOCIATION OF SCIENCE MUSEUM DIRECTORS OFFICER INFORMATION FROM INCEPTION IN 1959 TO TODAY 2018 Sarah George, Natural History Museum of Utah, Salt Lake City Utah Vice- Julie Stein, Burke Museum, Seattle,

More information

Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016)

Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016) Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016) App. 5-1 Registration Renewal Assignments Dates Term # of of 1st # of Use # of Form Serv. Key & State (Years) Fee Spec. Use

More information

Evolution Strategies for Optimizing Rectangular Cartograms

Evolution Strategies for Optimizing Rectangular Cartograms Evolution Strategies for Optimizing Rectangular Cartograms Kevin Buchin 1, Bettina Speckmann 1, and Sander Verdonschot 2 1 TU Eindhoven, 2 Carleton University September 20, 2012 Sander Verdonschot (Carleton

More information

Solving Quadratic Equations by Graphing 6.1. ft /sec. The height of the arrow h(t) in terms

Solving Quadratic Equations by Graphing 6.1. ft /sec. The height of the arrow h(t) in terms Quadratic Function f ( x) ax bx c Solving Quadratic Equations by Graphing 6.1 Write each in quadratic form. Example 1 f ( x) 3( x + ) Example Graph f ( x) x + 6 x + 8 Example 3 An arrow is shot upward

More information

NCTCOG Regional GIS Meeting 6-Years and Going Strong. May 15, 2018 hosted by: Tarrant County

NCTCOG Regional GIS Meeting 6-Years and Going Strong. May 15, 2018 hosted by: Tarrant County NCTCOG Regional GIS Meeting 6-Years and Going Strong May 15, 2018 hosted by: Tarrant County Woolpert at a Glance 1911 Founded in Dayton, Ohio 25+ Offices across the nation 800+ Global employees 25+ OFFICES

More information

Statistical Mechanics of Money, Income, and Wealth

Statistical Mechanics of Money, Income, and Wealth Statistical Mechanics of Money, Income, and Wealth Victor M. Yakovenko Adrian A. Dragulescu and A. Christian Silva Department of Physics, University of Maryland, College Park, USA http://www2.physics.umd.edu/~yakovenk/econophysics.html

More information

Trends in Metropolitan Network Circuity

Trends in Metropolitan Network Circuity Trends in Metropolitan Network Circuity David J. Giacomin Luke S. James David M. Levinson Abstract Because people seek to minimize their time and travel distance (or cost) when commuting, the circuity

More information

Scaling in Biology. How do properties of living systems change as their size is varied?

Scaling in Biology. How do properties of living systems change as their size is varied? Scaling in Biology How do properties of living systems change as their size is varied? Example: How does basal metabolic rate (heat radiation) vary as a function of an animal s body mass? Mouse Hamster

More information

2006 Supplemental Tax Information for JennisonDryden and Strategic Partners Funds

2006 Supplemental Tax Information for JennisonDryden and Strategic Partners Funds 2006 Supplemental Information for JennisonDryden and Strategic Partners s We have compiled the following information to help you prepare your 2006 federal and state tax returns: Percentage of income from

More information

Kathryn Robinson. Grades 3-5. From the Just Turn & Share Centers Series VOLUME 12

Kathryn Robinson. Grades 3-5. From the Just Turn & Share Centers Series VOLUME 12 1 2 From the Just Turn & Share Centers Series VOLUME 12 Temperature TM From the Just Turn & Share Centers Series Kathryn Robinson 3 4 M Enterprises WriteMath Enterprises 2303 Marseille Ct. Suite 104 Valrico,

More information

Using the ACS to track the economic performance of U.S. inner cities

Using the ACS to track the economic performance of U.S. inner cities Using the ACS to track the economic performance of U.S. inner cities 2017 ACS Data Users Conference May 11, 2017 Austin Nijhuis, Senior Research Analyst Initiative for a Competitive Inner (ICIC) ICIC ICIC

More information

The Elusive Connection between Density and Transit Use

The Elusive Connection between Density and Transit Use The Elusive Connection between Density and Transit Use Abstract: The connection between density and transportation is heralded by planners, yet results are often elusive. This paper analyzes two regions,

More information

Shock Wave Petunia. P. x hybrida Seed Count (Pelleted): 33,000 S./oz. (1,200 S./g)

Shock Wave Petunia. P. x hybrida Seed Count (Pelleted): 33,000 S./oz. (1,200 S./g) Shock Wave Petunia P. x hybrida Seed Count (Pelleted): 33,000 S./oz. (1,200 S./g) Updated Growing On Plant Growth Regulator Recommendations See page 2. Crop Timing Information See page 3. Plug Production

More information

Central PA Rail Summit Lewisburg, PA RAIL TRANSFER SUCCESS STORIES

Central PA Rail Summit Lewisburg, PA RAIL TRANSFER SUCCESS STORIES Central PA Rail Summit Lewisburg, PA RAIL TRANSFER SUCCESS STORIES BULKMATIC TRANSPORT MAP COMPANY NAME: BULKMATIC CONTACT NAME: PETE MILLER EMAIL: pmiller@bulkmatic.com PHONE: 610-873-0176 COMPANY WEBSITE:

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016

Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016 Information current as of 12:00 pm MDT, 06/29/2016 This report provides

More information

Mathematics Review Exercises. (answers at end)

Mathematics Review Exercises. (answers at end) Brock University Physics 1P21/1P91 Mathematics Review Exercises (answers at end) Work each exercise without using a calculator. 1. Express each number in scientific notation. (a) 437.1 (b) 563, 000 (c)

More information

Effects of Various Uncertainty Sources on Automatic Generation Control Systems

Effects of Various Uncertainty Sources on Automatic Generation Control Systems Effects of Various Uncertainty Sources on Automatic Generation Control Systems D. Apostolopoulou, Y. C. Chen, J. Zhang, A. D. Domínguez-García, and P. W. Sauer University of Illinois at Urbana-Champaign

More information

Meteorology 110. Lab 1. Geography and Map Skills

Meteorology 110. Lab 1. Geography and Map Skills Meteorology 110 Name Lab 1 Geography and Map Skills 1. Geography Weather involves maps. There s no getting around it. You must know where places are so when they are mentioned in the course it won t be

More information

Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach

Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach By Offei A. Adarkwa Nii Attoh-Okine (Ph.D) (IEEE Big Data Conference -10/27/2014) 1 Presentation

More information

7,042 7, ETA'MBST io n THE PRESS

7,042 7, ETA'MBST io n THE PRESS ETA'MBST io n THE PRESS R e l e a s e d f o r p u b l i c a t i o n S t. 5 1 3 0 Sun d a y m o r n in g, D e c. 5j F e d e r a l fiessrva B o a rd, not e a r l i e r. D ec e m b er 4, 1 9 2 6. 3ANTC D

More information

Understanding the Impact of Weather for POI Recommendations

Understanding the Impact of Weather for POI Recommendations S C I E N C E P A S S I O N T E C H N O L O G Y Understanding the Impact of Weather for POI Recommendations Christoph Trattner, Alex Oberegger, Lukas Eberhard, Denis Parra, Leandro Marinho, Know-Center@Graz

More information

Summary of Natural Hazard Statistics for 2008 in the United States

Summary of Natural Hazard Statistics for 2008 in the United States Summary of Natural Hazard Statistics for 2008 in the United States This National Weather Service (NWS) report summarizes fatalities, injuries and damages caused by severe weather in 2008. The NWS Office

More information

The Effect of TenMarks Math on Student Achievement: Technical Supplement. Jordan Rickles, Ryan Williams, John Meakin, Dong Hoon Lee, and Kirk Walters

The Effect of TenMarks Math on Student Achievement: Technical Supplement. Jordan Rickles, Ryan Williams, John Meakin, Dong Hoon Lee, and Kirk Walters The Effect of TenMarks Math on Student Achievement: Technical Supplement Jordan Rickles, Ryan Williams, John Meakin, Dong Hoon Lee, and Kirk Walters AUGUST 2017 The Effect of TenMarks Math on Student

More information

Transportation, Transshipment, and Assignment Problems

Transportation, Transshipment, and Assignment Problems Transportation, Transshipment, and Assignment Problems Riset Operasi 1 6-1 Chapter Topics The Transportation Model Computer Solution of a Transportation Problem The Transshipment Model Computer Solution

More information

AC/RC Regional Councils of Colonels & Partnerships

AC/RC Regional Councils of Colonels & Partnerships AC/RC Regional Councils of Colonels & Partnerships WESTERN REGION AC: SJA, I Corps RC: Cdr, 6 th LOD GREAT LAKES REGION AC: SJA, 101 st ABN Div (AA)) RC: Cdr, 9 th LOD NORTHEAST REGION AC: SJA, 10 th Mtn

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015

Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015 Information current as of 12:00 pm MDT, 09/16/2015 This report provides

More information

ASSESSING ACCURACY: HOTEL HORIZONS FORECASTS

ASSESSING ACCURACY: HOTEL HORIZONS FORECASTS ASSESSING ACCURACY: HOTEL HORIZONS FORECASTS April 13, 2016 EXECUTIVE SUMMARY The US hotel industry had another strong year in 2015 with RevPAR up 6.3 percent over the prior year. In this report, we examine

More information

Division I Sears Directors' Cup Final Standings As of 6/20/2001

Division I Sears Directors' Cup Final Standings As of 6/20/2001 1 Stanford (Cal.) 1359 2 90 9 75 20 62.5 0 0 0 0 0 0 3 75 1 100 5 60 8 76 4 80 0 0 2 70 2 California-Los Angeles 1138 0 0 5 78.5 17 67 0 0 0 0 0 0 2 90 9 50 5 60 2 0 33 48.5 2 70 1 100 3 Georgia 890.5

More information

Invoice Information. Remittance Account Number: Invoice Number: Invoice Date: Due Date: Total Amount Due: PLEASE SEND PAYMENT TO:

Invoice Information. Remittance Account Number: Invoice Number: Invoice Date: Due Date: Total Amount Due: PLEASE SEND PAYMENT TO: Easton Telecom Services, LLC PO Box 550 Richfield, OH 44286 Customer Service: 800-222-8122 Fax Number: 800-227-8420 custservice@eastontel.com Invoice Information Billing Summary Descriptions Charges /

More information

Forecasting the 2012 Presidential Election from History and the Polls

Forecasting the 2012 Presidential Election from History and the Polls Forecasting the 2012 Presidential Election from History and the Polls Drew Linzer Assistant Professor Emory University Department of Political Science Visiting Assistant Professor, 2012-13 Stanford University

More information

Cluster Analysis. Part of the Michigan Prosperity Initiative

Cluster Analysis. Part of the Michigan Prosperity Initiative Cluster Analysis Part of the Michigan Prosperity Initiative 6/17/2010 Land Policy Institute Contributors Dr. Soji Adelaja, Director Jason Ball, Visiting Academic Specialist Jonathon Baird, Research Assistant

More information

Drought Monitoring Capability of the Oklahoma Mesonet. Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet

Drought Monitoring Capability of the Oklahoma Mesonet. Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet Drought Monitoring Capability of the Oklahoma Mesonet Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet Mesonet History Commissioned in 1994 Atmospheric measurements with 5-minute resolution,

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015

Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015 Information current as of 12:00 pm MDT, 03/04/2015 This report provides

More information

U.S. General Services Administration FOIA Requester Service Center (H1F) 1800 F Street, NW, Room 7308 Washington, DC Fax:

U.S. General Services Administration FOIA Requester Service Center (H1F) 1800 F Street, NW, Room 7308 Washington, DC Fax: Description of document: Requested date: Released date: Posted date: Source of document: List of General Services Administration (GSA) properties from the REXUS (Real Estate Across the United States) database

More information

Density and Walkable Communities

Density and Walkable Communities Density and Walkable Communities Reid Ewing Professor & Chair City and Metropolitan Planning University of Utah ewing@arch.utah.edu Department of City & Metropolitan Planning, University of Utah MRC Research

More information

Lab Activity: Weather Variables

Lab Activity: Weather Variables Name: Date: Period: Weather The Physical Setting: Earth Science Lab Activity: Weather Variables INTRODUCTION: A meteorologist is an individual with specialized education who uses scientific principles

More information

Viewpoint Integra Realty Resources Real Estate Value Trends

Viewpoint Integra Realty Resources Real Estate Value Trends Viewpoint 0 Integra Realty Resources Real Estate Value Trends 55 N. Wacker Drive, Chicago, Illinois Local Expertise. National Reach. Integra Realty Resources, Inc. provides world-class commercial real

More information

SHSU ECONOMICS WORKING PAPER

SHSU ECONOMICS WORKING PAPER Sam Houston State University Department of Economics and International Business Working Paper Series Unbiased Estimation of the Half-Life to Price Index Convergence among US Cities Hiranya K Nath and Jayanta

More information

STATIONARITY OF THE TEMPORAL DISTRIBUTION OF RAINFALL Joseph P. Wilson, Wilson Hydro, LLC, Rolla, Missouri

STATIONARITY OF THE TEMPORAL DISTRIBUTION OF RAINFALL Joseph P. Wilson, Wilson Hydro, LLC, Rolla, Missouri STATIONARITY OF THE TEMPORAL DISTRIBUTION OF RAINFALL Joseph P. Wilson, Wilson Hydro, LLC, Rolla, Missouri Abstract The time distribution of rainfall is a critical element of hydrologic analysis. The location

More information

MINERALS THROUGH GEOGRAPHY

MINERALS THROUGH GEOGRAPHY MINERALS THROUGH GEOGRAPHY INTRODUCTION Minerals are related to rock type, not political definition of place. So, the minerals are to be found in a variety of locations that doesn t depend on population

More information

Module 19: Simple Linear Regression

Module 19: Simple Linear Regression Module 19: Simple Linear Regression This module focuses on simple linear regression and thus begins the process of exploring one of the more used and powerful statistical tools. Reviewed 11 May 05 /MODULE

More information

Austin. What is a Public Market? The original gathering place. Worldwide, ancient phenomenon. Ripe for a Public Market?

Austin. What is a Public Market? The original gathering place. Worldwide, ancient phenomenon. Ripe for a Public Market? Downtown Austin Alliance September 25, 2013 What is a Public Market? Austin Ripe for a Public Market? Have Public Goals Operate in Public Spaces Serve Locally Owned and Operated Businesses The original

More information

Contrasting Marginal and Mixed Effects Models Recall: two approaches to handling dependence in Generalized Linear Models:

Contrasting Marginal and Mixed Effects Models Recall: two approaches to handling dependence in Generalized Linear Models: Contrasting Marginal and Mixed Effects Models Recall: two approaches to handling dependence in Generalized Linear Models: Marginal models: based on the consequences of dependence on estimating model parameters.

More information

Stem-and-Leaf Displays

Stem-and-Leaf Displays 3.2 Displaying Numerical Data: Stem-and-Leaf Displays 107 casts in your area? (San Luis Obispo Tribune, June 15, 2005). The responses are summarized in the table below. Extremely 4% Very 27% Somewhat 53%

More information

Lab Activity Locating Epicenters

Lab Activity Locating Epicenters Lab Activity Locating Epicenters Key Features: Analyzing Seismograms P-waves & S-waves Using ESRT page 11 Drawing Epicenter Circles By Kaitlin Coder https://www.teacherspayteachers.com/store/nys-earth-science-and-living-environment-regents

More information

of HIGHE R E DUCAT I ON

of HIGHE R E DUCAT I ON AT LANTA IN TH E NAT IONAL LA N DSCAPE of HIGHE R E DUCAT I ON MSA Study1 N o AT LA N TA I N T H E NAT I ONA L LA N D S C A PE of HIG H E R EDUCAT I ON C O N T E N T S In t r o du c t i o n 1 To t he Re

More information

Exercises 36 CHAPTER 2/ORGANIZATION AND DESCRIPTION OF DATA

Exercises 36 CHAPTER 2/ORGANIZATION AND DESCRIPTION OF DATA 36 CHAPTER 2/ORGANIZATION AND DESCRIPTION OF DATA In the stem-and-leaf display, the column of first digits to the left of the vertical line is viewed as the stem, and the second digits as the leaves. Viewed

More information

Monthly Long Range Weather Commentary Issued: February 04, 2012 Steven A. Root, CCM, President/CEO

Monthly Long Range Weather Commentary Issued: February 04, 2012 Steven A. Root, CCM, President/CEO Monthly Long Range Weather Commentary Issued: February 04, 2012 Steven A. Root, CCM, President/CEO sroot@weatherbank.com Severe thunderstorms spawned tornadoes northeast of Birmingham, Alabama on January

More information

You can specify the response in the form of a single variable or in the form of a ratio of two variables denoted events/trials.

You can specify the response in the form of a single variable or in the form of a ratio of two variables denoted events/trials. The GENMOD Procedure MODEL Statement MODEL response = < effects > < /options > ; MODEL events/trials = < effects > < /options > ; You can specify the response in the form of a single variable or in the

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-01) Tables Dr. David Koop Visualization of Tables Items and attributes For now, attributes are not known to be positions Keys and values - key is an independent attribute

More information

The Vulnerable: How Race, Age and Poverty Contribute to Tornado Casualties

The Vulnerable: How Race, Age and Poverty Contribute to Tornado Casualties The Vulnerable: How Race, Age and Poverty Contribute to Tornado Casualties Tyler Fricker Department of Geography, Florida State University February 28, 2018 Who Survives? Credit: Dayton Daily News Take-Home

More information

Agenda today. Introduction to prescriptive modeling. Linear optimization models through three examples: Beyond linear optimization

Agenda today. Introduction to prescriptive modeling. Linear optimization models through three examples: Beyond linear optimization Agenda today Introduction to prescriptive modeling Linear optimization models through three examples: 1 Production and inventory optimization 2 Distribution system design 3 Stochastic optimization Beyond

More information

Curriculum Vitae. Ran Wei

Curriculum Vitae. Ran Wei Curriculum Vitae Ran Wei Contact Information Mailing Address: Department of Geography University of Utah 260 S. Central Campus Dr., Rm. 270 Salt Lake City, UT 84112-9155, USA Phone: 1-801-581-8730 Email:

More information

Urban Revival in America

Urban Revival in America Urban Revival in America Victor Couture 1 Jessie Handbury 2 1 University of California, Berkeley 2 University of Pennsylvania and NBER May 2016 1 / 23 Objectives 1. Document the recent revival of America

More information

Class business PS is due Wed. Lecture 20 (QPM 2016) Multivariate Regression November 14, / 44

Class business PS is due Wed. Lecture 20 (QPM 2016) Multivariate Regression November 14, / 44 Multivariate Regression Prof. Jacob M. Montgomery Quantitative Political Methodology (L32 363) November 14, 2016 Lecture 20 (QPM 2016) Multivariate Regression November 14, 2016 1 / 44 Class business PS

More information

AIR FORCE RESCUE COORDINATION CENTER

AIR FORCE RESCUE COORDINATION CENTER AIR FORCE RESCUE COORDINATION CENTER 2006 ANNUAL REPORT 1 TABLE OF CONTENTS AFRCC CHARTER & MISSION STATEMENT 3 AFRCC ORGANIZATION 4 TABLE 1 10 YEAR LOOKBACK 5 TABLE 2 ACTIVITY BY MISSION TYPE 6 TABLE

More information

A Handbook of Statistical Analyses Using R 2nd Edition. Brian S. Everitt and Torsten Hothorn

A Handbook of Statistical Analyses Using R 2nd Edition. Brian S. Everitt and Torsten Hothorn A Handbook of Statistical Analyses Using R 2nd Edition Brian S. Everitt and Torsten Hothorn CHAPTER 10 Scatterplot NA Air Pollution in the USA, and Risk Factors for Kyphosis 10.1 Introduction 10.2 Scatterplot

More information

Two problems to be solved. Example Use of SITATION. Here is the main menu. First step. Now. To load the data.

Two problems to be solved. Example Use of SITATION. Here is the main menu. First step. Now. To load the data. Two problems to be solved Example Use of SITATION Mark S. Daskin Department of IE/MS Northwestern U. Evanston, IL 1. Minimize the demand weighted total distance (or average distance) Using 10 facilities

More information

Final Exam. 1. Definitions: Briefly Define each of the following terms as they relate to the material covered in class.

Final Exam. 1. Definitions: Briefly Define each of the following terms as they relate to the material covered in class. Name Answer Key Economics 170 Spring 2003 Honor pledge: I have neither given nor received aid on this exam including the preparation of my one page formula list and the preparation of the Stata assignment

More information

Nationality(s): Syria. State(s): All States. From: 20 Jan To: 04 Aug Nationality

Nationality(s): Syria. State(s): All States. From: 20 Jan To: 04 Aug Nationality (s): Syria State(s): All States Syria 30 24 23 41 45 249 2,192 7,231 9,835 Arizona 0 0 0 0 0 15 168 590 773 Glendale 0 0 0 0 0 14 58 264 336 Phoenix 0 0 0 0 0 1 47 165 213 Tucson 0 0 0 0 0 0 63 161 224

More information

Meteorology Lab Activity: Interpreting Surface Observation Symbols

Meteorology Lab Activity: Interpreting Surface Observation Symbols Meteorology Lab Activity: Interpreting Surface Observation Symbols Introduction: Routine surface meteorological observations are represented on weather maps by a standard notation of symbols and numbers.

More information

FIRM FRAGMENTATION AND URBAN PATTERNS 1. INTRODUCTION

FIRM FRAGMENTATION AND URBAN PATTERNS 1. INTRODUCTION INTERNTIONL ECONOMIC REVIEW Vol. 50, No. 1, February 2009 FIRM FRGMENTTION ND URBN PTTERNS BY ESTEBN ROSSI-HNSBERG, PIERRE-DNIEL SRTE, ND RYMOND OWENS III 1 Princeton University, U.S..; Federal Reserve

More information

Measures of Urban Patterns in Large Urban Areas in the U.S.,

Measures of Urban Patterns in Large Urban Areas in the U.S., Measures of Urban Patterns in Large Urban Areas in the U.S., 1950-2010 Abstract John R. Ottensmann Indiana University-Purdue University Indianapolis john.ottensmann@gmail.com urbanpatternsblog.wordpress.com

More information

COMMUTING ANALYSIS IN A SMALL METROPOLITAN AREA: BOWLING GREEN KENTUCKY

COMMUTING ANALYSIS IN A SMALL METROPOLITAN AREA: BOWLING GREEN KENTUCKY Papers of the Applied Geography Conferences (2007) 30: 86-95 COMMUTING ANALYSIS IN A SMALL METROPOLITAN AREA: BOWLING GREEN KENTUCKY Caitlin Hager Jun Yan Department of Geography and Geology Western Kentucky

More information

Weather FActors. May 8 4:15 PM. Analyzing AIR MASSES & THEIR MOVEMENT

Weather FActors. May 8 4:15 PM. Analyzing AIR MASSES & THEIR MOVEMENT ` Weather FActors P: Analyze weather Q: What are the factors that cause weather? May 8 4:15 PM Analyzing AIR MASSES & THEIR MOVEMENT Read and take notes... Using pages 72-79: (IN YOUR JOURNAL!) - Identify

More information

DATE: 9/ L I S R E L 8.80

DATE: 9/ L I S R E L 8.80 98 LAMPIRAN 3 STRUCTURAL EQUATION MODEL ONE CONGINERIC Use of this program is subject to the terms specified in the Convention. Universal Copyright 9/2017 DATE: 9/ TIME: 20:22 Website: www.ssicentral.com

More information

, District of Columbia

, District of Columbia State Capitals These are the State Seals of each state. Fill in the blank with the name of each states capital city. (Hint: You may find it helpful to do the word search first to refresh your memory.),

More information

American Tour: Climate Objective To introduce contour maps as data displays.

American Tour: Climate Objective To introduce contour maps as data displays. American Tour: Climate Objective To introduce contour maps as data displays. www.everydaymathonline.com epresentations etoolkit Algorithms Practice EM Facts Workshop Game Family Letters Assessment Management

More information

Public Library Use and Economic Hard Times: Analysis of Recent Data

Public Library Use and Economic Hard Times: Analysis of Recent Data Public Library Use and Economic Hard Times: Analysis of Recent Data A Report Prepared for The American Library Association by The Library Research Center University of Illinois at Urbana Champaign April

More information

Dynamic Discrete Choice Structural Models in Empirical IO

Dynamic Discrete Choice Structural Models in Empirical IO Dynamic Discrete Choice Structural Models in Empirical IO Lecture 4: Euler Equations and Finite Dependence in Dynamic Discrete Choice Models Victor Aguirregabiria (University of Toronto) Carlos III, Madrid

More information

Resources. Amusement Park Physics With a NASA Twist EG GRC

Resources. Amusement Park Physics With a NASA Twist EG GRC Resources 141 EG-2003-03-010-GRC 142 EG-2003-03-01o-GRC Vocabulary acceleration-the rate of change of velocity displacement-change in position of an object force-a push or a pull exerted on some object

More information

A Convenient Transit of Mercury: November 8-9, 2006

A Convenient Transit of Mercury: November 8-9, 2006 A Convenient Transit of Mercury: November 8-9, 2006 John E. Westfall, Coordinator, ALPO Mercury/Venus Transit Section Abstract The 2006 transit will be Mercury s last until 2016, but fortunately its first

More information