You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
#lexicon icin: bkz F. Saglam, B. Genç, H. Sever, "Extending a Sentiment Lexicon with Synonym-Antonym Datasets: SWNetTR++", Turkish Journal of Electrical Engineering and Computer Sciences, 27 (2019) 1806-1820.
turkish_lexicon<-read.csv("SWNetTR.csv")
#lexicon'daki büyük harfleri küçük yapma: (daha kolay kod yazimi için)
lexicon2 <- turkish_lexicon %>%
select(c("WORD","POLARITY")) %>%
rename('word'="WORD",'value'="POLARITY")
lexicon2$value[lexicon2$value==1]<-"positive"
lexicon2$value[lexicon2$value==-1]<-"negative"
#bu lexicon'da 1 ifadesi kelime için pozitif, -1 ifadesi negatif anlaminda bunari degistirdim