Publications by cornelius

Corpus Linguistics with R, Day 1

28.07.2009

(This post documents the first day of a class on R that I took at ESU C&T. I is posted here purely for my own use.) R Lesson 1 > 2+3; 2/3; 2^3 [1] 5 [1] 0.6666667 [1] 8 --- Fundamentals - Functions > log(x=1000, base=10) [1] 3 --- (Formals describes the syntax of other functions) formals(sample) --- Variables ( <- allows you to sav...

4858 sym

Corpus Linguistics with R, Day 2

28.07.2009

R Lesson 2 text # gsub replaces stuff in strings > gsub (“second”, “third”, text) SEARCH-REPLACE-SUBJECT [1] “This is a first example sentence.” [2] “And this is a third example sentence.” > gsub (“n”, “X”, text) [1] “This is a first example seXteXce.” [2] “AXd this is a secoXd example seXteXce.” > gsub (�...

11865 sym

Code and brief instruction for graphing Twitter with R

23.05.2010

Edit: I’ve posted an updated version of the script here. It is not quite as compressed as Anatol’s version, but I think it’s a decent compromise between readability and efficiency. Edit #2 And yet another update, this one contributed by Kai Heinrich. I hacked together some code for R last night to visualize a Twitter graph (=who you are fo...

3665 sym 5 img

Graphing Twitter friends/followers with R (updated)

24.06.2010

Edit: And here is an update of the update, this one contributed by Kai Heinrich. Here’s an updated version of my script from last month, something I’ve been meaning to do for a while. I thank Anatol Stefanowitsch and Gábor Csárdi for improving my quite sloppy code. # Load twitteR and igraph packages. library(twitteR) library(igraph) # S...

1751 sym

Plotting texts as graphs with R and igraph

04.08.2010

I’ve plotted several word association graphs for this New York Times article (1st paragraph) using R and the igraph library. #1, random method #2, circle method #3, sphere method #4, spring method #5, fruchterman-reingold method # 6, kamada-kawai method #7, graphopt method The red vertices mark cliques. Here’s the (rough) R code for p...

4077 sym 14 img

Generating graphs of retweets and @-messages on Twitter using R and Gephi

17.10.2010

After recently discovering the excellent methods section on mappingonlinepublics.net, I decided it was time to document my own approach to Twitter data. I’ve been messing around with R and igraph for a while, but it wasn’t until I discovered Gephi that things really moved forward. R/igraph are great for preprocessing the data (not sure how th...

4547 sym R (2152 sym/2 pcs) 3 img 1 tbl

Graphing Twitter friends/followers with R (updated yet again)

22.12.2011

Those of you following my occasional updates here know that I have previously posted code for graphing Twitter friend/follower networks using R (post #1. post #2). Kai Heinrich was kind enough to send me some updated code for doing so using a newer version of the extremely useful twitteR package. His very crisp, yet thoroughly documented script ...

812 sym R (1951 sym/2 pcs) 1 tbl