JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q71602F
  • License Apache-2.0

A random sample of 534 workers from the Current Population Survey (CPS) from 1985.

Package Exports

  • @stdlib/datasets-berndt-cps-wages-1985
  • @stdlib/datasets-berndt-cps-wages-1985/lib/browser.js
  • @stdlib/datasets-berndt-cps-wages-1985/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/datasets-berndt-cps-wages-1985) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

CPS Wages Data

NPM version Build Status Coverage Status

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.


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

Chat


Copyright © 2016-2024. The Stdlib Authors.