Background photo by Alex Kondratiev on Unsplash
07 December, 2022
Background photo by Alex Kondratiev on Unsplash
Never again wonder what method did I use to center variable “foo” in my regression model … ?
DBI package and ODBC driversPhoto by Tamanna Rumee on Unsplash

Advanced R by Hadley Wickham
# configuration file
create_irods("<host>", "<zone>")
# authenticate
iauth()
# current working collection
ipwd()
# change working collection
icd("<path>")
# list
ils()
foo <- 1:10
# configuration file
iput(foo)
# authenticate
iget("foo") 
# or 
iget(foo) # ?
# add some metadata
imeta(
  "foo", 
  "data_object", 
  operations = 
    list(operation = "add", attribute = "foo", value = "bar", units = "baz")
)
# discover 
iquery("SELECT COLL_NAME, DATA_NAME WHERE COLL_NAME LIKE '/tempZone/home/%'")
docker-compose up -d nginx-reverse-proxyR CMD check without internet (simulate CRAN checks)Help us! https://fairelabs.github.io/webpage/
Ooms, Jeroen. 2022a. Curl: A Modern and Flexible Web Client for r. https://CRAN.R-project.org/package=curl.
———. 2022b. Jsonlite: A Simple and Robust JSON Parser and Generator for r. https://CRAN.R-project.org/package=jsonlite.
Richardson, Neal. 2022. Httptest2: Test Helpers for Httr2. https://CRAN.R-project.org/package=httptest2.
Wickham, Hadley. 2022. Httr2: Perform HTTP Requests and Process the Responses. https://CRAN.R-project.org/package=httr2.