Learn R Programming

AER (version 0.2-2)

Electricity1970: Cost Function of Electricity Producers 1970

Description

Cross-section data, at the firm level, on electric power generation.

Usage

data("Electricity1970")

Arguments

source

Online complements to Greene (2003), Table F5.2. http://pages.stern.nyu.edu/~wgreene/Text/tables/tablelist5.htm

Details

The data are from Christensen and Greene (1976) and pertain to the year 1970. However, the file contains some extra observations, the holding companies. Only the first 123 observations are needed to replicate Christensen and Greene (1976).

References

Christensen, L. and Greene, W.H. (1976). Economies of Scale in U.S. Electric Power Generation. Journal of Political Economy, 84, 655--676. Greene, W.H. (2003). Econometric Analysis, 5th edition. Upper Saddle River, NJ: Prentice Hall.

See Also

Greene2003, Electricity1955

Examples

Run this code
data("Electricity1970")

## Greene (2003), Ex. 5.6: a generalized Cobb-Douglas cost function
fm <- lm(log(cost/fuel) ~ log(output) + I(log(output)^2/2) + 
  log(capital/fuel) + log(labor/fuel), data=Electricity1970[1:123,])

Run the code above in your browser using DataLab