@@ -51,7 +51,7 @@ At present, the package exports the following functions:
5151 any recognized format but should be a ** dataframe** containing two
5252 columns ` Date ` and ` Case ` . The Date is the * day/month/year* the data
5353 is collected while Case is the variable for forecasting. The Date
54- must be in the recognized format, i.e., ** YYYY-MM-DD** . The other
54+ must be in the recognized format i.e. ‘ YYYY-MM-DD’ . The other
5555 arguments parsed to the function are ` MaximumDate ` , which is the
5656 last date Data was collected and ` BREAKS ` , which is a vector of
5757 numbers and is used as ` knots ` in estimating spline polynomials.
@@ -86,6 +86,11 @@ At present, the package exports the following functions:
86869 . ` data_transform ` is a wrapper for standardizing ` data.frame ` to make
8787 the values comparable for estimation and/or visualization.
8888
89+ 10 . ` estimate_plot ` is a function for plotting estimated coefficients of
90+ a model in their order of significance.
91+
92+ 11 . ` corplot ` is for plotting the correlation matrix.
93+
8994## Things the package can do
9095
9196The package is capable of
@@ -129,26 +134,46 @@ The package is capable of
129134
130135- Inverse scaled logit for constrained forecast
131136
132- - Linear regression and transformations which consists of
137+ - Linear regression and functional forms which consists of
133138
134139 - Linear model
135140
141+ - Linear model with interactions
142+
136143 - Semilog model
137144
138145 - Growth model
139146
140147 - Double Log model
141148
149+ - Mixed-power model
150+
151+ - Translog model
152+
142153 - Quadratic model
143154
155+ - Cubic model
156+
144157 - Inverse of y model
145158
146- - Square root of y model
159+ - Inverse of x model
160+
161+ - Inverse of y & x model
162+
163+ - Square root of model
164+
165+ - Cubic root of model
147166
148167 - formatted Model Table
149168
150169 - Prediction plots
151170
171+ - Fitted plots
172+
173+ - Naive effects plots
174+
175+ - Coefficients importance plot
176+
152177 - Summary of numeric variables
153178
154179 - Summary of character variables
0 commit comments