By Greg Nowak, 14 March, 2021 R XML2 R-Project can be used to parse, build and validate XML files. The xml2 R library is the latest xml parsing library and should be used instead of the outdated xml library. Install dev version from github: # install.packages("devtools") devtools::install_github("r-lib/xml2")Links Manual: https://rdrr.io/cran/xml2/man/ Tags r-project
By Greg Nowak, 5 February, 2021 Reinstalling and Updating All Current R-Packages To New Version of R In bash: R -e 'update.packages(checkBuilt = TRUE, ask = FALSE)' Source: https://community.rstudio.com/t/reinstalling-packages-on-new-version-of… Tags rscript r-project
By Greg Nowak, 12 April, 2017 Time Stamp in R How to make a nice time stamp with date and time in R: now <- strptime(Sys.time(), "%Y-%m-%d%T") time_stamp <- sprintf("%s", now ) Tags r-project rstudio rscript