RとWebサービス
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
/// 2003.12.26 追記(岡田)
COLOR(red){SIZE(30){RとWebサービス}}
#contents
----
*[[RSOAP:http://sourceforge.net/projects/rsoap/]] [#zbd1a...
**RSOAP とは [#y511081f]
元々はZopeで利用するR用のSOAPインターフェースあったが、...
[[Rpy:http://rpy.sourceforge.net/]] と、PythonでSOAPサー...
** インストール [#i246b8fd]
*** 必要なソフトウェア [#q2d8240a]
以下は RSOAP 1.1.4 の場合
- プログラム:
--Python 2.1.3 or 2.2.1 [[http://www.python.org]]
--R 1.6.1 以降
- Python ライブラリ:
--rpy 0.3.1 以降 [[http://rpy.sourceforge.net/]]
--pyXML 0.8.2 以降 [[http://pyXML.sourceforge.net/]]
--SOAPpy 0.9.9-pre2 以降 [[http://pywebsvcs.sf.net]]
- R ライブラリ
--session 1.0 以降 [[http://cran.r-project.org/src/contri...
*** インストール [#qba5e1ee]
-Windows
-Linux
*** 実行 [#l3cdef7c]
-サーバ
-クライアント
** 利用方法 [#y3951833]
RSOAPは、「サーバマネージャ」サービスと「サーバプロセス」...
** 利用例 [#e0536108]
***MacOS X のAppleScriptから呼んだ例 [#ja9bcbc9]
-- サーバマネージャサービスのURLがlocalhost:9081のとき
tell application "http://localhost:9081/"
set returnValue to call soap {method name:"newServ...
method namespace uri:"", parameters:"", SOAPAct...
end tell
-- 上の呼び出しで、たとえば"http://localhost:9087"が返っ...
tell application "http://localhost:9087/"
set returnValue to call soap {method name:"call", ¬
method namespace uri:"", parameters:{|String|:"...
end tell
***WSDLの書き方例 [#w8646b25]
eval, downloadFileだけが使えるサンプル(「サーバプロセス」...
<?xml version="1.0"?>
<definitions name="RSOAP" targetNamespace="urn:RSOAP"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/enco...
xmlns:xsd="http://www.w3.org/1999/XMLSchema"
xmlns:rsoap="urn:RSOAP" xmlns="http://schemas.xmlso...
<types>
<xsd:complexType name="downloadFileResponseType">
<xsd:all>
<xsd:element name="flag" type="xsd:int"/>
<xsd:element name="data" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
</types>
<message name="downloadFileRequest">
<part name="name" type="xsd:string"/>
</message>
<message name="downloadFileResponse">
<part name="response" type="rsoap:downloadFileRes...
</message>
<message name="evalRequest">
<part name="string" type="xsd:string"/>
</message>
<message name="evalResponse">
<part name="value" type="xsd:string"/>
</message>
<portType name="RSOAPProcess">
<operation name="eval">
<input message="rsoap:evalRequest"/> <output
message="rs...
</operation>
<operation name="downloadFile">
<input message="rsoap:downloadFileRequest"/> <output
message="rs...
</operation>
<service name="RSOAPProcessService">
<documentation>RSOAP Process API Service</documentati...
<port name="RSOAPProcessPort" binding="rsoap:RSOAPPro...
<soap:address
location="http://localhost:9083"/>
</port>
</service>
<binding name="RSOAPProcessSoapBinding" type="rsoap:RSOA...
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/s...
<operation name="eval">
<soap:operation
soapAction="" style="rpc"/>
<input>
<soap:body use="literal"
/>
</input>
<output>
<soap:body use="literal"
/>
</output>
</operation>
<operation name="downloadFile">
<soap:operation
soapAction="" style="rpc"/>
<input>
<soap:body use="literal"
/>
</input>
<output>
<soap:body encodingStyle="http://schemas.xmlsoap....
namespace="urn:RSOAP" use="encoded"/>
/>
</output>
</operation>
</binding>
</definitions>
***WebObjectsから呼んでみる [#a4211a57]
(工事中)
** 注意事項 [#x458b8eb]
RSOAPは比較的古いSOAP実装であるSOAPpyを使っているため、SO...
ただし、SOAPpyをちょっと改造してur-typeと出力しているとこ...
**利用例 [#s47d8e46]
データマイニングソフト[[Spotfire:http://www.spotfire.co...
**関連リンク [#q3014bd8]
-[[RSOAP for RStat(R):http://random-technologies-llc.com/...
-[[SSOAP:http://www.omegahat.org/SSOAP/]]
-[[tutorial:http://www.pyzine.com/Issue005/Section_Articl...
-[[統計処理ソフトRとWOのSOAPを使った連携:http://www.okada...
-[[Using R/Apache as the Statistical Engine for Web Appli...
-[[R as a Web Service Introduction:www.r-project.org/useR...
-[[RWebServices - Expose R functions as web services thro...
--Windows のバイナリなし
--[[Biocep-R]]で利用
-[[webbioc - Bioconductor Web Interface:http://bioconduct...
-[[The R.rsp package - R Server Pages:http://www1.maths.l...
--[[R.rsp(R サーバページ)パッケージ中のオブジェクト一覧]]
-[[Embedding R within the Apache Web Server: What’s the U...
-[[ Creation of a Semi-Variogram using RSOAP and Python:h...
-[[RWebServices:http://www.bioconductor.org/packages/2.3/...
-[[Approaches to R as web and analytic service:http://www...
**Rterm や [[Rscript]]との併用例。Rscript は不等号や ^ が...
-Simple linear regression with PHP [[Part1:http://www.ibm...
**プログラム例(Rscript [#e9ca9284]
$RPath = 'C:\\R\\R-2.9.1\\bin\\Rscript.exe'; // Your R...
$dbfPathName = "/temp/test.dbf";
$cmd = $RPath." -e \"library(foreign);d=read.dbf('$dbfPa...
$res = shell_exec($cmd);//R の実行
echo explode(" ", $res);//行番号を取る
**プログラム例(Rterm) [#d2731855]
$RPath = 'C:\\R\\R-2.9.1\\bin\\Rterm.exe'; // Your R p...
$dbfPathName = "/temp/test.dbf";
$cmd = "echo library(foreign);d=read.dbf('$dbfPathName')...
$res = shell_exec($cmd);//R の実行。injectgion 対策が要...
echo explode(" ", $res);//行番号を取る
**PHP [#k6adcc35]
[[R_PHP:http://steve-chen.net/download_area/r]]
-Rパスやパーミッションの設定だけでは使えない(Ubuntuでテス...
-コマンドは R CMD BATCH ではアウトプットを吐いてくれなか...
-$r_code = POST['r_code'] としてTEXTAREAを取得する必要が...
またこのままだとクオーテーションがバックスラッシュつきな...
-strreplace("\\", "", $r_code)
**[[Rserve:http://www.rforge.net/Rserve/index.html]] の次...
*Python [#y6238932]
-[[rpy2とsoaplibでつくるRのウェブサービス:http://blog.kzf...
*JSON [#r7e85887]
-rjson: R 用 JSON
ベクトルとリストのみサポート
[[rjson( R 用 JSON)パッケージ中のオブジェクト一覧]]
-[[RJSONIO:http://cran.okada.jp.org/web/packages/RJSONIO/...
**GeoJSON [#v42b98ad]
地理空間データ用JSON
-rgdal
*Google [#t1123935]
**Google Docs [#xb3c58e2]
-[[RGoogleDocs:http://www.omegahat.org/RGoogleDocs/]] [#p...
GoogleDocs のリスト、ダウンロード、アップロード、削除が...
RCurl と XML パッケージを利用。
-[[How to Run R-Scripts Directly Out of Google Docs Witho...
**Google Trends [#zbc45cf1]
-[[RGoogleTrends:http://www.omegahat.org/RGoogleTrends/]]...
**Google Maps [#c6c41bad]
-[[RGoogleMaps]] Google Maps [#xb4f0a5b]
-[[R2GoogleMaps:http://www.omegahat.org/R2GoogleMaps/]] G...
-[[A Practical Guide to Geostatistical Mapping:http://spa...
-plotGoogleMaps: Plot HTML output with Google Maps API an...
-[[Calling Google Maps API from R:http://www.r-bloggers.c...
-[[Producing Google Map Embeds with R Package googleVis:h...
-[[googleVis 0.2.13: new stepped area chart and improved ...
-[[googleVis 0.2.15 is released: Improved geo and bubble ...
-ggmap: A package for spatial visualization with Google M...
**Google Earth [#md8f0416]
-[[RKML:http://www.omegahat.org/RKML/]] GE/KML の作成。時...
**Google Chart Tools [#n9c1249b]
-googleVis パッケージ@CRAN
--[[Using R to Map with Google Chart Tools:http://spatial...
**Google Visualization API [#n3de8233]
- googleVis: Using the Google Visualisation API with R
--[[google-motion-charts-with-r:http://code.google.com/p/...
--[[google-motion-charts-with-r:http://code.google.com/p/...
--[[Including googleVis output into a blogger post:http:/...
--[[Using the Google Visualisation API with R:http://jour...
--[[Google Visualization API:http://rbresearch.wordpress....
--[[Interactive web graphs with R – Overview and go...
-g.brownian.motion 関数 in animation パッケージ・・・ ブ...
**Google Spreadsheets [#sf75b210]
- [[Accessing Google Spreadsheets from R:http://rspatialt...
-[[Spatiotemporal analysis of rural-urban land conversion...
-[[Using Google Spreadsheets as a Database Source for R:h...
-[[Google Spreadsheets API: Listing Individual Spreadshee...
**Google Fusion Tables [#i9079f7c]
-[[R Interface:http://andrei.lopatenko.com/rstat/fusion-t...
--[[上位のサイト:http://code.google.com/intl/ja/apis/fusi...
-[[R interface to Google Fusion Tables:http://groups.goog...
**Google JSON [#se6395ca]
=gooJSON
**BigQuery [#w5e2158d]
-googlebigquery パッケージ
**Google Prediction API [#m3686206]
-[[
r-google-prediction-api-v12:http://code.google.com/p/r-go...
**Google Scholar [#e73c9515]
-[[Google-Scholar-Search-Wordcloud:https://docs.google.co...
-[[R-Function GScholarScraper – Try it!!:http://www...
**Google Weather API [#sd78b857]
-[[RWeather:https://r-forge.r-project.org/projects/rweath...
**Google Analytics [#ec92a3bd]
-[[Using R and the Google Analytics API:http://randyzwitc...
*Twitter [#u4e3272b]
**twitteR: R ベースの Twitter クライアント [#f5cc097c]
Twitter API を利用
-[[twitteR サンプル]]
-[[第5回 インターリュード: TwitterとR:http://www.atmarkit...
-[[Text Data Mining With Twitter And R:http://heuristical...
-[[An R function to map your Twitter Followers:http://www...
-[[Social Media Interest Maps of Newsnight and BBCQT Twit...
-[[Visualising Twitter User Timeline Activity in R:http:/...
-[[How to track Twitter unfollowers in R:http://www.inves...
-[[Plotting the Frequency of Twitter Hashtag Usage Over T...
-[[Twitter analysis of air pollution in Beijing:http://br...
**短縮URLのデコード [#c21e1952]
-[[https://github.com/tonybreyal/Blog-Reference-Functions...
--[[Unshorten any URL with R:http://www.r-bloggers.com/un...
*[[RWebServices:http://www.bioconductor.org/packages/deve...
*SSSR: Server Side Scripting with R [#y814beb8]
*Amazon [#n6928229]
**[[RAmazonS3:http://www.omegahat.org/RAmazonS3/]] S3 ア...
**[[RAmazonDBREST:http://www.omegahat.org/RAmazonDBREST/]...
*Flickr [#ffa5aae4]
**[[Rflickr:http://www.omegahat.org/Rflickr/]] R より 113...
*New York Times [#x2d194c0]
**[[RNYTimes:http://www.omegahat.org/RNYTimes/]] New York...
*Last.fm [#wa4425eb]
[[RLastFM: R interface to last.fm API:http://cran.r-proje...
*Zillow 不動産情報 [#v05f3389]
*GIS 関連 [#z0a0a8a1]
**Geo API [#ze0ffc37]
-[[Getting data from the Infochimps Geo API in R:http://w...
**地名 [#e9c97eef]
-[[geonames:http://r-forge.r-project.org/projects/geoname...
*RCurl [#a37f9d4c]
[[REST サービスのサンプルコード:http://github.com/hadley/...
*nytR: Provides access to the NY Times API [#m87a84ce]
現状はアメリカ議会情報のデータ
*世界銀行 [#w0c902db]
-[[Accessing and plotting World Bank data with R:http://w...
*参考リンク [#g655fcd2]
**[[他言語からR利用(インチキ版)]] awk からの利用方法 [#...
*[[R で GeoWeb]] [#yff52168]
*Wolfram|Alpha API. [#g32ecd1d]
*Facebook [#u95a22f8]
-[[Visualizing Facebook Friends: Eye Candy in R:http://pa...
--[[R Chart featured in Facebook IPO:http://www.r-blogger...
--[[R graphic used for Facebook IPO:http://www.r-bloggers...
--[[Graphics *and* Statistics: The Facebook Map:http://ww...
--[[Facebook’s Social Network Graph:http://www.r-bloggers...
-[[Mining Facebook Data: Most "Liked" Status and Friendsh...
-[[Crawling facebook with R:http://romainfrancois.blog.fr...
**Facebook Graph API [#pc2e4f45]
-[[Facebook Graph API Explorer with R:http://www.r-blogge...
*Sensor Observation Services (SOS) [#a06c9e14]
-sos4R
*[[Soil Web:http://casoilresource.lawr.ucdavis.edu/drupal...
-[[Automated OSD Lookup and Display via SoilWeb and AQP:h...
*Yahoo! [#s0c1e882]
**Yahoo! JAPANが提供するテキスト解析Web API [#q7b23175]
-[[RでYahoo!の日本語解析APIを使うパッケージを作ってみまし...
-[[RMeCab以外のテキスト解析]]
*GeoRSS [#u707af96]
-[[例:https://stat.ethz.ch/pipermail/r-sig-geo/2011-May/0...
*Foursquare [#wd4a10f8]
-[[A Request for Foursquare Data:http://www.r-bloggers.co...
-[[R and Foursquare's recommendation engine:http://blog.r...
*東京電力 [#yc35a045]
-[[R: 東京電力の電力使用状況グラフ (2011年7月版):http://i...
*[[RとWeb API:http://www.slideshare.net/yokkuns/rweb-api]...
*Groupon [#nbc3c0be]
-[[What $480M of Gross Revenue Looks Like to Groupon:http...
*Bing [#v9e92551]
**Bing Maps [#h88bc288]
-DeducerSpatial
*[[Weather API:http://www.wunderground.com/weather/api/d/...
-[[Getting Historical Weather Data in R and SAP HANA:http...
*Dropbox [#y41d7f3c]
-[[Source R-Script from Dropbox:http://thebiobucket.blogs...
-[[Get a path to your Dropbox folder:http://applyr.blogsp...
-[[Download Files from Dropbox Programmatically with R:ht...
-[[Dropbox & R Data:http://christophergandrud.blogspot.jp...
-[[Running R Scripts Directly From Dropbox:http://www.eco...
*[[Capitol Words API:http://capitolwords.org/api/]] [#k44...
-[[The grade level of Congress speeches, analyzed with R:...
*[[Global Biodiversity Information Facility:http://www.pr...
-[[rgbif: Interface to the Global Biodiversity Informatio...
*[[SMS analysis (coming from an Android smartphone or an ...
* [[次世代統計利用システム:http://statdb.nstac.go.jp]] [#...
-govStatJPN: functions to get public survey data in Japan
終了行:
/// 2003.12.26 追記(岡田)
COLOR(red){SIZE(30){RとWebサービス}}
#contents
----
*[[RSOAP:http://sourceforge.net/projects/rsoap/]] [#zbd1a...
**RSOAP とは [#y511081f]
元々はZopeで利用するR用のSOAPインターフェースあったが、...
[[Rpy:http://rpy.sourceforge.net/]] と、PythonでSOAPサー...
** インストール [#i246b8fd]
*** 必要なソフトウェア [#q2d8240a]
以下は RSOAP 1.1.4 の場合
- プログラム:
--Python 2.1.3 or 2.2.1 [[http://www.python.org]]
--R 1.6.1 以降
- Python ライブラリ:
--rpy 0.3.1 以降 [[http://rpy.sourceforge.net/]]
--pyXML 0.8.2 以降 [[http://pyXML.sourceforge.net/]]
--SOAPpy 0.9.9-pre2 以降 [[http://pywebsvcs.sf.net]]
- R ライブラリ
--session 1.0 以降 [[http://cran.r-project.org/src/contri...
*** インストール [#qba5e1ee]
-Windows
-Linux
*** 実行 [#l3cdef7c]
-サーバ
-クライアント
** 利用方法 [#y3951833]
RSOAPは、「サーバマネージャ」サービスと「サーバプロセス」...
** 利用例 [#e0536108]
***MacOS X のAppleScriptから呼んだ例 [#ja9bcbc9]
-- サーバマネージャサービスのURLがlocalhost:9081のとき
tell application "http://localhost:9081/"
set returnValue to call soap {method name:"newServ...
method namespace uri:"", parameters:"", SOAPAct...
end tell
-- 上の呼び出しで、たとえば"http://localhost:9087"が返っ...
tell application "http://localhost:9087/"
set returnValue to call soap {method name:"call", ¬
method namespace uri:"", parameters:{|String|:"...
end tell
***WSDLの書き方例 [#w8646b25]
eval, downloadFileだけが使えるサンプル(「サーバプロセス」...
<?xml version="1.0"?>
<definitions name="RSOAP" targetNamespace="urn:RSOAP"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/enco...
xmlns:xsd="http://www.w3.org/1999/XMLSchema"
xmlns:rsoap="urn:RSOAP" xmlns="http://schemas.xmlso...
<types>
<xsd:complexType name="downloadFileResponseType">
<xsd:all>
<xsd:element name="flag" type="xsd:int"/>
<xsd:element name="data" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
</types>
<message name="downloadFileRequest">
<part name="name" type="xsd:string"/>
</message>
<message name="downloadFileResponse">
<part name="response" type="rsoap:downloadFileRes...
</message>
<message name="evalRequest">
<part name="string" type="xsd:string"/>
</message>
<message name="evalResponse">
<part name="value" type="xsd:string"/>
</message>
<portType name="RSOAPProcess">
<operation name="eval">
<input message="rsoap:evalRequest"/> <output
message="rs...
</operation>
<operation name="downloadFile">
<input message="rsoap:downloadFileRequest"/> <output
message="rs...
</operation>
<service name="RSOAPProcessService">
<documentation>RSOAP Process API Service</documentati...
<port name="RSOAPProcessPort" binding="rsoap:RSOAPPro...
<soap:address
location="http://localhost:9083"/>
</port>
</service>
<binding name="RSOAPProcessSoapBinding" type="rsoap:RSOA...
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/s...
<operation name="eval">
<soap:operation
soapAction="" style="rpc"/>
<input>
<soap:body use="literal"
/>
</input>
<output>
<soap:body use="literal"
/>
</output>
</operation>
<operation name="downloadFile">
<soap:operation
soapAction="" style="rpc"/>
<input>
<soap:body use="literal"
/>
</input>
<output>
<soap:body encodingStyle="http://schemas.xmlsoap....
namespace="urn:RSOAP" use="encoded"/>
/>
</output>
</operation>
</binding>
</definitions>
***WebObjectsから呼んでみる [#a4211a57]
(工事中)
** 注意事項 [#x458b8eb]
RSOAPは比較的古いSOAP実装であるSOAPpyを使っているため、SO...
ただし、SOAPpyをちょっと改造してur-typeと出力しているとこ...
**利用例 [#s47d8e46]
データマイニングソフト[[Spotfire:http://www.spotfire.co...
**関連リンク [#q3014bd8]
-[[RSOAP for RStat(R):http://random-technologies-llc.com/...
-[[SSOAP:http://www.omegahat.org/SSOAP/]]
-[[tutorial:http://www.pyzine.com/Issue005/Section_Articl...
-[[統計処理ソフトRとWOのSOAPを使った連携:http://www.okada...
-[[Using R/Apache as the Statistical Engine for Web Appli...
-[[R as a Web Service Introduction:www.r-project.org/useR...
-[[RWebServices - Expose R functions as web services thro...
--Windows のバイナリなし
--[[Biocep-R]]で利用
-[[webbioc - Bioconductor Web Interface:http://bioconduct...
-[[The R.rsp package - R Server Pages:http://www1.maths.l...
--[[R.rsp(R サーバページ)パッケージ中のオブジェクト一覧]]
-[[Embedding R within the Apache Web Server: What’s the U...
-[[ Creation of a Semi-Variogram using RSOAP and Python:h...
-[[RWebServices:http://www.bioconductor.org/packages/2.3/...
-[[Approaches to R as web and analytic service:http://www...
**Rterm や [[Rscript]]との併用例。Rscript は不等号や ^ が...
-Simple linear regression with PHP [[Part1:http://www.ibm...
**プログラム例(Rscript [#e9ca9284]
$RPath = 'C:\\R\\R-2.9.1\\bin\\Rscript.exe'; // Your R...
$dbfPathName = "/temp/test.dbf";
$cmd = $RPath." -e \"library(foreign);d=read.dbf('$dbfPa...
$res = shell_exec($cmd);//R の実行
echo explode(" ", $res);//行番号を取る
**プログラム例(Rterm) [#d2731855]
$RPath = 'C:\\R\\R-2.9.1\\bin\\Rterm.exe'; // Your R p...
$dbfPathName = "/temp/test.dbf";
$cmd = "echo library(foreign);d=read.dbf('$dbfPathName')...
$res = shell_exec($cmd);//R の実行。injectgion 対策が要...
echo explode(" ", $res);//行番号を取る
**PHP [#k6adcc35]
[[R_PHP:http://steve-chen.net/download_area/r]]
-Rパスやパーミッションの設定だけでは使えない(Ubuntuでテス...
-コマンドは R CMD BATCH ではアウトプットを吐いてくれなか...
-$r_code = POST['r_code'] としてTEXTAREAを取得する必要が...
またこのままだとクオーテーションがバックスラッシュつきな...
-strreplace("\\", "", $r_code)
**[[Rserve:http://www.rforge.net/Rserve/index.html]] の次...
*Python [#y6238932]
-[[rpy2とsoaplibでつくるRのウェブサービス:http://blog.kzf...
*JSON [#r7e85887]
-rjson: R 用 JSON
ベクトルとリストのみサポート
[[rjson( R 用 JSON)パッケージ中のオブジェクト一覧]]
-[[RJSONIO:http://cran.okada.jp.org/web/packages/RJSONIO/...
**GeoJSON [#v42b98ad]
地理空間データ用JSON
-rgdal
*Google [#t1123935]
**Google Docs [#xb3c58e2]
-[[RGoogleDocs:http://www.omegahat.org/RGoogleDocs/]] [#p...
GoogleDocs のリスト、ダウンロード、アップロード、削除が...
RCurl と XML パッケージを利用。
-[[How to Run R-Scripts Directly Out of Google Docs Witho...
**Google Trends [#zbc45cf1]
-[[RGoogleTrends:http://www.omegahat.org/RGoogleTrends/]]...
**Google Maps [#c6c41bad]
-[[RGoogleMaps]] Google Maps [#xb4f0a5b]
-[[R2GoogleMaps:http://www.omegahat.org/R2GoogleMaps/]] G...
-[[A Practical Guide to Geostatistical Mapping:http://spa...
-plotGoogleMaps: Plot HTML output with Google Maps API an...
-[[Calling Google Maps API from R:http://www.r-bloggers.c...
-[[Producing Google Map Embeds with R Package googleVis:h...
-[[googleVis 0.2.13: new stepped area chart and improved ...
-[[googleVis 0.2.15 is released: Improved geo and bubble ...
-ggmap: A package for spatial visualization with Google M...
**Google Earth [#md8f0416]
-[[RKML:http://www.omegahat.org/RKML/]] GE/KML の作成。時...
**Google Chart Tools [#n9c1249b]
-googleVis パッケージ@CRAN
--[[Using R to Map with Google Chart Tools:http://spatial...
**Google Visualization API [#n3de8233]
- googleVis: Using the Google Visualisation API with R
--[[google-motion-charts-with-r:http://code.google.com/p/...
--[[google-motion-charts-with-r:http://code.google.com/p/...
--[[Including googleVis output into a blogger post:http:/...
--[[Using the Google Visualisation API with R:http://jour...
--[[Google Visualization API:http://rbresearch.wordpress....
--[[Interactive web graphs with R – Overview and go...
-g.brownian.motion 関数 in animation パッケージ・・・ ブ...
**Google Spreadsheets [#sf75b210]
- [[Accessing Google Spreadsheets from R:http://rspatialt...
-[[Spatiotemporal analysis of rural-urban land conversion...
-[[Using Google Spreadsheets as a Database Source for R:h...
-[[Google Spreadsheets API: Listing Individual Spreadshee...
**Google Fusion Tables [#i9079f7c]
-[[R Interface:http://andrei.lopatenko.com/rstat/fusion-t...
--[[上位のサイト:http://code.google.com/intl/ja/apis/fusi...
-[[R interface to Google Fusion Tables:http://groups.goog...
**Google JSON [#se6395ca]
=gooJSON
**BigQuery [#w5e2158d]
-googlebigquery パッケージ
**Google Prediction API [#m3686206]
-[[
r-google-prediction-api-v12:http://code.google.com/p/r-go...
**Google Scholar [#e73c9515]
-[[Google-Scholar-Search-Wordcloud:https://docs.google.co...
-[[R-Function GScholarScraper – Try it!!:http://www...
**Google Weather API [#sd78b857]
-[[RWeather:https://r-forge.r-project.org/projects/rweath...
**Google Analytics [#ec92a3bd]
-[[Using R and the Google Analytics API:http://randyzwitc...
*Twitter [#u4e3272b]
**twitteR: R ベースの Twitter クライアント [#f5cc097c]
Twitter API を利用
-[[twitteR サンプル]]
-[[第5回 インターリュード: TwitterとR:http://www.atmarkit...
-[[Text Data Mining With Twitter And R:http://heuristical...
-[[An R function to map your Twitter Followers:http://www...
-[[Social Media Interest Maps of Newsnight and BBCQT Twit...
-[[Visualising Twitter User Timeline Activity in R:http:/...
-[[How to track Twitter unfollowers in R:http://www.inves...
-[[Plotting the Frequency of Twitter Hashtag Usage Over T...
-[[Twitter analysis of air pollution in Beijing:http://br...
**短縮URLのデコード [#c21e1952]
-[[https://github.com/tonybreyal/Blog-Reference-Functions...
--[[Unshorten any URL with R:http://www.r-bloggers.com/un...
*[[RWebServices:http://www.bioconductor.org/packages/deve...
*SSSR: Server Side Scripting with R [#y814beb8]
*Amazon [#n6928229]
**[[RAmazonS3:http://www.omegahat.org/RAmazonS3/]] S3 ア...
**[[RAmazonDBREST:http://www.omegahat.org/RAmazonDBREST/]...
*Flickr [#ffa5aae4]
**[[Rflickr:http://www.omegahat.org/Rflickr/]] R より 113...
*New York Times [#x2d194c0]
**[[RNYTimes:http://www.omegahat.org/RNYTimes/]] New York...
*Last.fm [#wa4425eb]
[[RLastFM: R interface to last.fm API:http://cran.r-proje...
*Zillow 不動産情報 [#v05f3389]
*GIS 関連 [#z0a0a8a1]
**Geo API [#ze0ffc37]
-[[Getting data from the Infochimps Geo API in R:http://w...
**地名 [#e9c97eef]
-[[geonames:http://r-forge.r-project.org/projects/geoname...
*RCurl [#a37f9d4c]
[[REST サービスのサンプルコード:http://github.com/hadley/...
*nytR: Provides access to the NY Times API [#m87a84ce]
現状はアメリカ議会情報のデータ
*世界銀行 [#w0c902db]
-[[Accessing and plotting World Bank data with R:http://w...
*参考リンク [#g655fcd2]
**[[他言語からR利用(インチキ版)]] awk からの利用方法 [#...
*[[R で GeoWeb]] [#yff52168]
*Wolfram|Alpha API. [#g32ecd1d]
*Facebook [#u95a22f8]
-[[Visualizing Facebook Friends: Eye Candy in R:http://pa...
--[[R Chart featured in Facebook IPO:http://www.r-blogger...
--[[R graphic used for Facebook IPO:http://www.r-bloggers...
--[[Graphics *and* Statistics: The Facebook Map:http://ww...
--[[Facebook’s Social Network Graph:http://www.r-bloggers...
-[[Mining Facebook Data: Most "Liked" Status and Friendsh...
-[[Crawling facebook with R:http://romainfrancois.blog.fr...
**Facebook Graph API [#pc2e4f45]
-[[Facebook Graph API Explorer with R:http://www.r-blogge...
*Sensor Observation Services (SOS) [#a06c9e14]
-sos4R
*[[Soil Web:http://casoilresource.lawr.ucdavis.edu/drupal...
-[[Automated OSD Lookup and Display via SoilWeb and AQP:h...
*Yahoo! [#s0c1e882]
**Yahoo! JAPANが提供するテキスト解析Web API [#q7b23175]
-[[RでYahoo!の日本語解析APIを使うパッケージを作ってみまし...
-[[RMeCab以外のテキスト解析]]
*GeoRSS [#u707af96]
-[[例:https://stat.ethz.ch/pipermail/r-sig-geo/2011-May/0...
*Foursquare [#wd4a10f8]
-[[A Request for Foursquare Data:http://www.r-bloggers.co...
-[[R and Foursquare's recommendation engine:http://blog.r...
*東京電力 [#yc35a045]
-[[R: 東京電力の電力使用状況グラフ (2011年7月版):http://i...
*[[RとWeb API:http://www.slideshare.net/yokkuns/rweb-api]...
*Groupon [#nbc3c0be]
-[[What $480M of Gross Revenue Looks Like to Groupon:http...
*Bing [#v9e92551]
**Bing Maps [#h88bc288]
-DeducerSpatial
*[[Weather API:http://www.wunderground.com/weather/api/d/...
-[[Getting Historical Weather Data in R and SAP HANA:http...
*Dropbox [#y41d7f3c]
-[[Source R-Script from Dropbox:http://thebiobucket.blogs...
-[[Get a path to your Dropbox folder:http://applyr.blogsp...
-[[Download Files from Dropbox Programmatically with R:ht...
-[[Dropbox & R Data:http://christophergandrud.blogspot.jp...
-[[Running R Scripts Directly From Dropbox:http://www.eco...
*[[Capitol Words API:http://capitolwords.org/api/]] [#k44...
-[[The grade level of Congress speeches, analyzed with R:...
*[[Global Biodiversity Information Facility:http://www.pr...
-[[rgbif: Interface to the Global Biodiversity Informatio...
*[[SMS analysis (coming from an Android smartphone or an ...
* [[次世代統計利用システム:http://statdb.nstac.go.jp]] [#...
-govStatJPN: functions to get public survey data in Japan
ページ名: