This file contains 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
count.google.hits <- function(query) { | |
# call Google Search and extract the number of hits | |
url <- paste('http://www.google.com/search?q=', query, sep="") | |
tmp <- readLines(url, warn=FALSE) | |
writeLines(tmp, "c:\\temp\\pokus.html") | |
pattern <- ".*<div id=resultStats>[A-Za-z ]*([0-9 ,]*) results<nobr> \\([0-9.]* seconds\\).*" | |
count.line <- grep(pattern,tmp)[1] | |
hits <- sub(pattern, "\\1", tmp[[count.line]]) |
This file contains 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
library(xlsReadWrite) | |
library(MASS) | |
### DATA DOWNLOAD | |
dir.name <- tempdir() | |
url2010 <- "http://www.praguemarathon.com/images/stories/articles/files/HM2010/HM2010_eng.xls" | |
file <- paste(dir.name, "2010.xls", sep="\\") |
This file contains 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
function SearchEmail() { | |
var mySheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); | |
var EmailName = Browser.inputBox("Search", "Type from:[email protected]", Browser.Buttons.OK_CANCEL); | |
var maxthreads = 250; | |
var searchedThreads= GmailApp.search("from:(<" + EmailName + ">)", 0, maxthreads); | |
var regExp = new RegExp(".*<" + EmailName + ">$"); | |
var counter = 1; | |
for(var i in searchedThreads){ | |
var messages = searchedThreads[i].getMessages(); |
This file contains 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
data <- read.csv("http://docs.google.com/spreadsheet/pub?hl=en_US&hl=en_US&key=0AnhE_6FIbbVWdFNxeS1ESWtvSUk5WE5KcnBwVWVqckE&output=csv", header=FALSE, skip=1, as.is=TRUE) | |
sent <- data.frame(Time=strptime(data[,1], "%H:%M:%S")) | |
library(ggplot2) | |
theme_update(panel.background = theme_rect(fill = "grey90", colour = "black")) | |
xstart <- strptime("01:00:00", "%H:%M:%S") | |
xend <- strptime("23:00:00", "%H:%M:%S") | |
ggplot(sent, aes(Time)) + geom_density(fill="grey50", adjust=0.5) + xlim(xstart, xend) |
This file contains 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
# the code uses 'facebook' function from the previous gist (https://gist.github.com/1634662) or | |
# see the original http://romainfrancois.blog.free.fr/index.php?post/2012/01/15/Crawling-facebook-with-R | |
# scrape the list of friends | |
friends <- facebook( path="me/friends" , access_token=access_token) | |
# extract Facebook IDs | |
friends.id <- sapply(friends$data, function(x) x$id) | |
# extract names | |
friends.name <- sapply(friends$data, function(x) iconv(x$name,"UTF-8","ASCII//TRANSLIT")) | |
# short names to initials |
This file contains 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
require(pixmap) | |
# download small profile picture of each friend | |
dir.create("photos") | |
for (i in 1:length(friends.id)) | |
download.file(paste("http://graph.facebook.com", friends.id[i], "picture", sep="/"), | |
destfile=paste("photos/",friends.id[i],".jpg",sep="")) | |
system('for i in `ls photos/*.jpg`; do j=${i%.*}; convert $j.jpg $j.pnm; done', wait=TRUE) | |
# customized node plotting function |
This file contains 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
# go to 'https://developers.facebook.com/tools/explorer' to get your access token | |
access_token <- "******************* INPUT YOUR ACCESS TOKEN ******************************" | |
require(RCurl) | |
require(rjson) | |
# Facebook json function copied from original (Romain Francois) post | |
facebook <- function( path = "me", access_token, options){ | |
if( !missing(options) ){ | |
options <- sprintf( "?%s", paste( names(options), "=", unlist(options), collapse = "&", sep = "" ) ) |
This file contains 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
get.dropbox.folder <- function() { | |
if (!require(RCurl)) stop ("You need to install RCurl package.") | |
if (Sys.info()["sysname"]!="Windows") stop("Currently, 'get.dropbox.folder' works for Windows only. Sorry.") | |
db.file <- paste(Sys.getenv('APPDATA'), '\\Dropbox\\host.db', sep='') | |
base64coded <- readLines(db.file, warn=FALSE)[2] | |
base64(base64coded, encode=FALSE) | |
} |
This file contains 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
library(httr) | |
library(digest) | |
library(XML) | |
s3_request <- function(verb, bucket, path = "/", query = NULL, | |
content = NULL, date = NULL) { | |
list( | |
verb = verb, | |
bucket = bucket, | |
path = path, |
This file contains 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
library(twitteR) | |
library(tm) | |
library(wordcloud) | |
library(RColorBrewer) | |
library(dplyr) | |
library(ggplot2) | |
# load tweets | |
download.file("ftp://ftp.jax.org/petrs/other/IMGC14.rds", destfile = "IMGC14_tweets.rds", mode="wb") | |
tweet <- readRDS("IMGC14_tweets.rds") |
OlderNewer