@stdlib/datasets-berndt-cps-wages-1985
v0.2.2
Published
A random sample of 534 workers from the Current Population Survey (CPS) from 1985.
Downloads
22
Readme
CPS Wages Data
A random sample of 534 workers from the Current Population Survey (CPS) from 1985.
Installation
npm install @stdlib/datasets-berndt-cps-wages-1985
Usage
var cps = require( '@stdlib/datasets-berndt-cps-wages-1985' );
cps()
Returns a random sample of 534 workers from the Current Population Survey (CPS) from 1985, including their wages and and other characteristics.
var data = cps();
// returns [{...},{...},...]
Each array
element has the following eleven fields:
- education: number of years of education.
- south: indicator variable for southern region (
1
if a person lives in the South;0
if a person does not live in the South). - gender: gender of the person.
- experience: number of years of work experience.
- union: indicator variable for union membership (
1
if union member;0
if not a union member). - wage: log-transformed wage (in dollars per hour).
- age: age (in years).
- race: ethnicity/race (
'white'
,'hispanic'
, and'other'
). - occupation: occupational category (
'management'
,'sales'
,'clerical'
,'service'
,'professional'
, and'other'
). - sector: sector (
'other'
,'manufacturing'
, or'construction'
). - married: marital status (
0
if unmarried;1
if married).
Notes
- Based on residual plots, wages were log-transformed to stabilize the variance.
Examples
var Plot = require( '@stdlib/plot' );
var dataset = require( '@stdlib/datasets-berndt-cps-wages-1985' );
var data;
var plot;
var opts;
var x;
var y;
var i;
data = dataset();
// Extract wage data...
x = [];
y = [];
for ( i = 0; i < data.length; i++ ) {
x.push( data[ i ].age );
y.push( data[ i ].wage );
}
// Create a plot instance:
opts = {
'lineStyle': 'none',
'symbols': 'closed-circle',
'xLabel': 'Age',
'yLabel': 'Wage',
'title': 'Age vs Wage'
};
plot = new Plot( [ x ], [ y ], opts );
References
- Berndt, Ernst R. 1991. The Practice of Econometrics. Addison Wesley Longman Publishing Co.
License
The data files (databases) are licensed under an Open Data Commons Public Domain Dedication & License 1.0 and their contents are licensed under Creative Commons Zero v1.0 Universal. The software is licensed under Apache License, Version 2.0.
See Also
@stdlib/datasets-berndt-cps-wages-1985-cli
: CLI package for use as a command-line utility.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
Copyright
Copyright © 2016-2024. The Stdlib Authors.