Answers for "update package r"

1

how to update an r package

# update only a specific package use install.packages()
install.packages("plotly")

# update all available packages
update.packages()

# list all packages where an update is available
old.packages()

# update, without prompts for permission/clarification
update.packages(ask = FALSE)
Posted by: Guest on April-06-2020

Browse Popular Code Answers by Language