@ София Уилсон Ваша версия R очень старая 3.2. Перед установкой новых пакетов описанным ниже способом вам следует обновить версию R. Если ваша организация не разрешает вам обновлять версию R, вам следует подумать о том, чтобы научиться использовать Base R для как можно большей части своей работы или использовать среду IDE /, например Jupyter Notebook.
# Install pacakges if they are not already installed: necessary_packages => character vector
necessary_packages <- c("flextable")
# Create a vector containing the names of any packages needing installation:
# new_pacakges => character vector
new_packages <- necessary_packages[!(necessary_packages %in%
installed.packages()[, "Package"])]
# If the vector has more than 0 values, install the new pacakges
# (and their) associated dependencies: varied => stdout
if(length(new_packages) > 0){install.packages(new_packages, dependencies = TRUE)}
# Initialise the packages in the session: bool => stdout
lapply(necessary_packages, require, character.only = TRUE)