-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathojo_eviction_cases.Rd
60 lines (52 loc) · 1.75 KB
/
ojo_eviction_cases.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ojo_eviction_cases.R
\name{ojo_eviction_cases}
\alias{ojo_eviction_cases}
\title{OJO Eviction Cases}
\usage{
ojo_eviction_cases(
districts = "all",
...,
date_start = NULL,
date_end = NULL,
more_case_variables = NULL,
more_issue_variables = NULL,
get_judgments = TRUE
)
}
\arguments{
\item{districts}{District codes for which to collect data (default is "all", which collects data for all districts)}
\item{...}{Placeholder for additional arguments}
\item{date_start}{Start date for the data collection period}
\item{date_end}{End date for the data collection period (default is NULL, which collects the most up-to-date data)}
\item{more_case_variables}{Additional variables from case table to include in the output}
\item{more_issue_variables}{Additional variables from issue table to include in the output}
\item{get_judgments}{Logical value indicating whether to include eviction judgment information in the output}
}
\value{
A dataframe containing eviction data
}
\description{
Collects Oklahoma eviction data for the specified districts (or all of Oklahoma)
for the user specified time frame. If date_end is not specified, the
most up-to-date data will be collected.
Function uses the latest methodology we use for identifying eviction cases
and outcomes in Oklahoma. As that methodology is updated, this function will
be updated to reflect those changes.
}
\examples{
\dontrun{
ojo_eviction_cases()
ojo_eviction_cases(districts = c("TULSA", "ADAIR"))
ojo_eviction_cases(
districts = c("TULSA", "ADAIR"),
date_start = "2020-01-01",
date_end = "2020-01-31",
more_issue_variables = disposition_date
)
ojo_eviction_cases(
districts = c("TULSA", "ADAIR"),
get_judgments = TRUE
)
}
}