tailieunhanh - SAS/ETS 9.22 User's Guide 114

SAS/Ets User's Guide 114. Provides detailed reference material for using SAS/ETS software and guides you through the analysis and forecasting of features such as univariate and multivariate time series, cross-sectional time series, seasonal adjustments, multiequational nonlinear models, discrete choice models, limited dependent variable models, portfolio analysis, and generation of financial reports, with introductory and advanced examples for each procedure. You can also find complete information about two easy-to-use point-and-click applications: the Time Series Forecasting System, for automatic and interactive time series modeling and forecasting, and the Investment Analysis System, for time-value of money analysis of a variety of investments | 1122 F Chapter 18 The MODEL Procedure Figure Static Estimation Results for Fish Model The MODEL Procedure Nonlinear OLS Parameter Estimates Approx Approx Parameter Estimate Std Err t Value Pr t ku ke To perform a dynamic estimation of the differential equation add the DYNAMIC option to the FIT statement. proc model data fish parm ku .3 ke .3 ku - ke conc fit conc time day dynamic run The equation is integrated from conc 0 0. The results from this estimation are shown in Figure . Figure Dynamic Estimation Results for Fish Model The MODEL Procedure Nonlinear OLS Parameter Estimates Approx Approx Parameter Estimate Std Err t Value Pr t ku ke To perform a dynamic estimation of the differential equation and estimate the initial value use the following statements proc model data fish parm ku .3 ke .3 concO 0 ku - ke conc fit conc initial conc concO time day dynamic run The INITIAL option in the FIT statement is used to associate the initial value of a differential equation with a parameter. The results from this estimation are shown in Figure . Ordinary Differential Equations F 1123 Figure Dynamic Estimation with Initial Value for Fish Model The MODEL Procedure Nonlinear OLS Parameter Estimates Parameter Estimate Approx Std Err t Value Approx Pr t ku ke concO Finally to estimate the fish model by using the analytical solution use the following statements proc model data fish parm ku .3 ke .3 conc ku ke 1 -exp -ke day fit conc run The results from this estimation are shown in Figure . Figure Analytical Estimation Results for Fish Model The MODEL Procedure Nonlinear OLS Parameter Estimates Approx Approx Parameter Estimate Std Err t Value Pr t ku ke A .