Skip to main content

A Python Package for Stochastic Frontier Analysis

Project description

Stochastic Frontier Analysis (SFA)

Installation

The pySFA package is now avaiable on PyPI and the latest development version can be installed from the Github repository pySFA. Please feel free to download and test it. We welcome any bug reports and feedback.

PyPI PyPI versionPyPI downloads

pip install pysfa

GitHub

pip install -U git+https://github.com/gEAPA/pySFA

Authors

  • Sheng Dai, PhD, Turku School of Economics, University of Turku, Finland.
  • Zhiqiang Liao, Doctoral Researcher, Aalto University School of Business, Finland.

Demo: Estimating a production function by pySFA

import numpy as np
import pandas as pd
from pysfa import SFA
from pysfa.dataset import load_Tim_Coelli_frontier


# import the data from Tim Coelli Frontier 4.1
df = load_Tim_Coelli_frontier(x_select=['labour', 'capital'],
                              y_select=['output'])
y = np.log(df.y)
x = np.log(df.x)

# Estimate SFA model
res = SFA.SFA(y, x, fun=SFA.FUN_PROD, method=SFA.TE_teJ)
res.optimize()
# print estimates
print(res.get_beta())
print(res.get_residuals())

# print estimated parameters
print(res.get_lambda())
print(res.get_sigma2())
print(res.get_sigmau2())
print(res.get_sigmav2())

# print statistics
print(res.get_pvalue())
print(res.get_tvalue())
print(res.get_std_err())

# OR print summary
print(res.summary())

# print TE
print(res.get_technical_efficiency())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysfa-0.8.tar.gz (9.9 kB view hashes)

Uploaded Source

Built Distribution

pysfa-0.8-py3-none-any.whl (9.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page