Transform .CSV to Token and POS tagging

Hello, im a newbie and im trying to get to work with Rstudio for my final project. i want to do Tokenization and Parts of Speech Tagging with my .CSV data using udpipe package but i still dont know how to import the .csv data and save the result. The udpipe package code in text:

#menentukan working directory
setwd("F:/SKRIPSI/POS TAGGING/udpipe-master")

#membersihkan
rm(list = ls())

#install.packages("udpipe")
#vignette("udpipe-tryitout", package = "udpipe")
#vignette("udpipe-annotation", package = "udpipe")
#vignette("udpipe-usecase-postagging-lemmatisation", package = "udpipe")
# An overview of keyword extraction techniques: https://bnosac.github.io/udpipe/docs/doc7.html
#vignette("udpipe-usecase-topicmodelling", package = "udpipe")
#vignette("udpipe-parallel", package = "udpipe")
#vignette("udpipe-train", package = "udpipe")
#install.packages("textrank")
#vignette("textrank", package = "textrank")

library(udpipe)
library(textrank)

udmodel <- udpipe_download_model(language = "indonesian")
udmodel

x <- udpipe(x = "aku mau makan ku ingat kamu aku mau tidur juga ku ingat kamu, aku sedang bosan ku ingat kamu oh tuhan mungkin kah ku jatuh cinta",
            object = udmodel)
x

the .csv data that i want to tokenize and POS Tagging
https://drive.google.com/file/d/1EI5r83xLOZUKCqQfWvMFV31EGj11GIOP/view?usp=sharing

i hope everyone can help to fix my problem, thank you in advance!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.