[R] twitter useRs?

2009-02-09 Thread Jose Quesada
I wonder if there are any useRs sharing day-to-day realizations/tricks
on twitter...
Seems like a good place for those things that are good findings, but
one is too lazy to blog about them...

-- 
Jose Quesada, PhD.
Max Planck Institute, Human Development, Berlin
http://www.josequesada.name/

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] twitter useRs?

2009-02-10 Thread Tobias Verbeke

Hi José,


I wonder if there are any useRs sharing day-to-day realizations/tricks
on twitter...
Seems like a good place for those things that are good findings, but
one is too lazy to blog about them...


I don't twitter, but I wrote an R package
to read and write tweets from the R command
line for twitter and laconi.ca.

I will submit it soon, but if anyone is interested
contact me off-list.

Best,
Tobias

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] twitter useRs?

2009-02-10 Thread Gesmann, Markus
Hi all,

A colleague of mine wrote a little function to send messages to twitter:

update <- function(status){
method <- "http://twitter.com/statuses/update.xml?status=";
encoded_status <- URLencode(status)
request <- paste(method,encoded_status,sep = "")
postForm(request,.opts = opts)
}

See also:
http://twitter.com/sebastiansuncle?page=2, http://pastie.org/367741


Regards

Markus




-Original Message-
From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On 
Behalf Of Tobias Verbeke
Sent: 10 February 2009 08:54
To: Jose Quesada
Cc: r-help@r-project.org
Subject: Re: [R] twitter useRs?


Hi José,

> I wonder if there are any useRs sharing day-to-day realizations/tricks
> on twitter...
> Seems like a good place for those things that are good findings, but
> one is too lazy to blog about them...

I don't twitter, but I wrote an R package
to read and write tweets from the R command
line for twitter and laconi.ca.

I will submit it soon, but if anyone is interested
contact me off-list.

Best,
Tobias

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
**
The information in this E-Mail and in any attachments is...{{dropped:27}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.