-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_json.R
26 lines (25 loc) · 944 Bytes
/
make_json.R
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
df <- data.frame(
package = c("insight",
"datawizard",
"bayestestR",
"effectsize",
"parameters",
"performance",
"see",
"modelbased",
"correlation",
"report",
"easystats"),
url = c("https://github.com/easystats/insight",
"https://github.com/easystats/datawizard",
"https://github.com/easystats/bayestestR",
"https://github.com/easystats/effectsize",
"https://github.com/easystats/parameters",
"https://github.com/easystats/performance",
"https://github.com/easystats/see",
"https://github.com/easystats/modelbased",
"https://github.com/easystats/correlation",
"https://github.com/easystats/report",
"https://github.com/easystats/easystats")
)
jsonlite::write_json(df, 'packages.json', pretty = TRUE)