Created
April 12, 2012 21:10
-
-
Save josefslerka/2371016 to your computer and use it in GitHub Desktop.
Import dat z Ataxo Social Insideru do R a jejich zbaveni diakritiky a vytazeni subsetu
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
tbl <- read.csv("tatrabanka.csv") | |
mydata.vector <- tbl$Content | |
mydata.vector <- iconv(mydata.vector, from="utf8", to="ASCII//TRANSLIT") | |
mydata.vector <- gsub("\'", "", mydata.vector) | |
twitter <- subset(mydata.vector, mydata.vector$Source == "twitter_cs") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment