Created
December 6, 2020 15:00
-
-
Save abdu95/200b726aa91b3fa77a3079d16d1e45cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
english_t <- c() | |
for (i in article) { | |
element <- translate(i, from = "ru", to = "en") | |
english_t <- c(english_t, element) | |
} | |
unlisted_result <- unlist(english_t, use.names=FALSE) | |
write(unlisted_result, "en_translated_article.txt") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment