-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDESCRIPTION
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathDESCRIPTION
File metadata and controls
73 lines (73 loc) · 2.31 KB
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
Package: nycOpenData
Type: Package
Title: A Lightweight Interface to NYC Open Data APIs
Version: 0.2.3
Authors@R:
c(
person("Christian", "Martinez",
email = "c.martinez0@outlook.com",
role = c("aut", "cre"),
comment = c(
GitHub = "martinezc1",
ORCID = "0009-0005-6026-6454"
)),
person("Crystal", "Adote",
role = "ctb",
comment = c(GitHub = "crystalna20")),
person("Jonah", "Dratfield",
role = "ctb",
comment = c(GitHub = "jdratfield38")),
person("Joyce", "Escatel-Flores",
role = "ctb",
comment = c(GitHub = "JoyceEscatel")),
person("Rob", "Hutto",
role = "ctb",
comment = c(GitHub = "robhutto")),
person("Isley", "Jean-Pierre",
role = "ctb",
comment = c(GitHub = "ijpier")),
person("Shannon", "Joyce",
role = "ctb",
comment = c(GitHub = "shannonjoyce")),
person("Laura", "Rose-Werner",
role = "ctb",
comment = c(GitHub = "laurarosewerner")),
person("Emma", "Tupone",
role = "ctb",
comment = c(GitHub = "emmatup0205")),
person("Xinru", "Wang",
role = "ctb",
comment = c(GitHub = "xrwangxr"))
)
Description: Provides a unified set of helper functions to access datasets
from the NYC Open Data platform <https://opendata.cityofnewyork.us/>.
Functions return results as tidy tibbles and support optional filtering,
sorting, and row limits via the Socrata API. The package includes endpoints
for 311 service requests, DOB job applications, juvenile justice metrics,
school safety, environmental data, event permitting, and additional citywide datasets.
License: MIT + file LICENSE
Encoding: UTF-8
RoxygenNote: 7.3.3
Imports:
httr,
jsonlite,
tibble,
janitor,
curl,
dplyr,
rlang
Suggests:
ggplot2,
knitr,
rmarkdown,
scales,
testthat (>= 3.0.0),
tidyr,
vcr (>= 0.6.0),
webmockr
URL: https://docs.ropensci.org/nycOpenData/, https://github.com/ropensci/nycOpenData
BugReports: https://github.com/ropensci/nycOpenData/issues
VignetteBuilder: knitr
Config/testthat/edition: 3
Depends:
R (>= 3.5)