Description Usage Arguments Details Value Author(s) See Also Examples
Prints summary of SF or DEA model estimated by sf
,
teradial
, tenonradial
, and
teradialbc
, or
testing procedures nptestrts
and nptestind
.
1 2 3 4 |
object |
an object of class |
x |
an object of class |
digits |
numeric. Number of digits to be displayed in estimation results and for efficiency estimates. Default is 4. |
print.level |
numeric. 0 - nothing is printed; 1 - print summary of the model and data. 2 - print summary of technical efficiency measures. 3 - print estimation results observation by observation (for DEA models). Default is 1. |
... |
currently unused. |
The summary depends on the model or testing procedure that is being estimated
Currently no value is returned
Oleg Badunenko <oleg.badunenko@brunel.ac.uk>
sf
, teradial
, tenonradial
,
teradialbc
, tenonradialbc
, nptestrts
, and nptestind
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | require( npsf )
# Load Penn World Tables 5.6 dataset
data( pwt56 )
# Stochastic production frontier model with
# homoskedastic error components (half-normal)
# Use subset of observations - for year 1965
# DEA
t1 <- teradialbc ( Y ~ K + L, data = pwt56, subset = Nu < 10,
reps = 199, print.level = 0)
summary(t1)
# SFA
m1 <- sf(log(Y) ~ log(L) + log(K), data = pwt56,
subset = year == 1965, distribution = "h",
print.level = 0)
summary( m1 )
# Load U.S. commercial banks dataset
data(banks05)
m3 <- sf(lnC ~ lnw1 + lnw2 + lny1 + lny2, ln.var.u.0i = ~ ER,
ln.var.v.0i = ~ LA, data = banks05, distribution = "t",
prod = FALSE, print.level = 3)
summary(m3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.