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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plm-package.R
\docType{data}
\name{Crime}
\alias{Crime}
\title{Crime in North Carolina}
\format{
A data frame containing :
\describe{
\item{county}{county identifier}
\item{year}{year from 1981 to 1987}
\item{crmrte}{crimes committed per person}
\item{prbarr}{'probability' of arrest}
\item{prbconv}{'probability' of conviction}
\item{prbpris}{'probability' of prison sentence}
\item{avgsen}{average sentence, days}
\item{polpc}{police per capita}
\item{density}{people per square mile}
\item{taxpc}{tax revenue per capita}
\item{region}{factor. One of 'other', 'west' or 'central'.}
\item{smsa}{factor. (Also called "urban".) Does the individual reside in a SMSA (standard metropolitan statistical area)?}
\item{pctmin}{percentage minority in 1980}
\item{wcon}{weekly wage in construction}
\item{wtuc}{weekly wage in transportation, utilities, communications}
\item{wtrd}{weekly wage in wholesale and retail trade}
\item{wfir}{weekly wage in finance, insurance and real estate}
\item{wser}{weekly wage in service industry}
\item{wmfg}{weekly wage in manufacturing}
\item{wfed}{weekly wage in federal government}
\item{wsta}{weekly wage in state government}
\item{wloc}{weekly wage in local government}
\item{mix}{offence mix: face-to-face/other}
\item{pctymle}{percentage of young males (between ages 15 to 24)}
\item{lcrmrte}{log of crimes committed per person}
\item{lprbarr}{log of 'probability' of arrest}
\item{lprbconv}{log of 'probability' of conviction}
\item{lprbpris}{log of 'probability' of prison sentence}
\item{lavgsen}{log of average sentence, days}
\item{lpolpc}{log of police per capita}
\item{ldensity}{log of people per square mile}
\item{ltaxpc}{log of tax revenue per capita}
\item{lpctmin}{log of percentage minority in 1980}
\item{lwcon}{log of weekly wage in construction}
\item{lwtuc}{log of weekly wage in transportation, utilities, communications}
\item{lwtrd}{log of weekly wage in wholesale and retail trade}
\item{lwfir}{log of weekly wage in finance, insurance and real estate}
\item{lwser}{log of weekly wage in service industry}
\item{lwmfg}{log of weekly wage in manufacturing}
\item{lwfed}{log of weekly wage in federal government}
\item{lwsta}{log of weekly wage in state government}
\item{lwloc}{log of weekly wage in local government}
\item{lmix}{log of offence mix: face-to-face/other}
\item{lpctymle}{log of percentage of young males (between ages 15 to 24)}}
}
\source{
Journal of Applied Econometrics Data Archive (complements Baltagi
(2006)):
\url{http://qed.econ.queensu.ca/jae/2006-v21.4/baltagi/}
Online complements to Baltagi (2001):
\url{https://www.wiley.com/legacy/wileychi/baltagi/}
Online complements to Baltagi (2013):
\url{https://bcs.wiley.com/he-bcs/Books?action=resource&bcsId=4338&itemId=1118672321&resourceId=13452}
See also Journal of Applied Econometrics data archive entry for
Baltagi (2006) at
\url{http://qed.econ.queensu.ca/jae/2006-v21.4/baltagi/}.
}
\description{
a panel of 90 observational units (counties) from 1981 to 1987
}
\details{
\emph{total number of observations} : 630
\emph{observation} : regional
\emph{country} : United States
The variables l* (lcrmrte, lprbarr, ...) contain the pre-computed logarithms
of the base variables as found in the original data set. Note that these
values slightly differ from what R's log() function yields for the base
variables. In order to reproduce examples from the literature, the
pre-computed logs need to be used, otherwise the results differ slightly.
}
\references{
\insertRef{CORN:TRUM:94}{plm}
\insertRef{BALT:06}{plm}
\insertRef{BALT:01}{plm}
\insertRef{BALT:13}{plm}
}
\keyword{datasets}
|