Skip to content

Instantly share code, notes, and snippets.

@tdhopper
Created August 10, 2012 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdhopper/3316665 to your computer and use it in GitHub Desktop.
Save tdhopper/3316665 to your computer and use it in GitHub Desktop.
ggplot(noah.most.frequent.phrase[noah.most.frequent.phrase$user %in% users[1:10],])+
aes(x=day, y=bid, color=factor(user))+geom_jitter(alpha=0.9)
ggplot(noah[noah$user==users[1],])+
aes(x=day, y=bid, color=phrase)+geom_jitter()
qplot(log(key.phrase.counts), geom="histogram")
ggplot(noah[noah$phrase==most.frequent.phrase,])+aes(x=user, y=bid, color=clicks.zero, shape=position.one)+geom_jitter(alpha=0.7, size=10, width=0.5, height=0)
ggplot(noah[noah$phrase==most.frequent.phrase,])+aes(x=day, y=bid, color=clicks.zero, shape=position.one)+geom_jitter(alpha=0.7, size=2, width=0.5, height=0)
ggplot(noah[noah$phrase==most.frequent.phrase,])+aes(x=bid, y=position)+geom_jitter(alpha=0.7, size=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment