I'm trying to run googleLanguageR to translate a certain column using NL API translation service. Here's my code: https://cran.r-project.org/web/packages/googleLanguageR/googleLanguageR.pdf
gl_translate(
data$comments,
target = "en",
format = c("text"),
source = "")
The output looks like this. I'd like to take the translatedText output and append it as a NEW column to my existing tibble called "data".